Class FieldDeclaration

java.lang.Object
org.flowable.engine.impl.bpmn.parser.FieldDeclaration
All Implemented Interfaces:
Serializable

public class FieldDeclaration extends Object implements Serializable
Represents a field declaration in object form:

<field name='someField> <string ...

Author:
Joram Barrez, Frederik Heremans
See Also:
  • Field Details

    • name

      protected String name
    • type

      protected String type
    • value

      protected Object value
  • Constructor Details

    • FieldDeclaration

      public FieldDeclaration(String name, String type, Object value)
    • FieldDeclaration

      public FieldDeclaration()
  • Method Details

    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getType

      public String getType()
    • setType

      public void setType(String type)
    • getValue

      public Object getValue()
    • setValue

      public void setValue(Object value)