Class EntityInfo
- java.lang.Object
-
- org.icatproject.EntityInfo
-
public class EntityInfo extends Object
Java class for entityInfo complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="entityInfo"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="classComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="constraints" type="{http://icatproject.org}constraint" maxOccurs="unbounded" minOccurs="0"/> <element name="fields" type="{http://icatproject.org}entityField" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringclassCommentprotected List<Constraint>constraintsprotected List<EntityField>fields
-
Constructor Summary
Constructors Constructor Description EntityInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassComment()Gets the value of the classComment property.List<Constraint>getConstraints()Gets the value of the constraints property.List<EntityField>getFields()Gets the value of the fields property.voidsetClassComment(String value)Sets the value of the classComment property.
-
-
-
Field Detail
-
classComment
protected String classComment
-
constraints
protected List<Constraint> constraints
-
fields
protected List<EntityField> fields
-
-
Method Detail
-
getClassComment
public String getClassComment()
Gets the value of the classComment property.- Returns:
- possible object is
String
-
setClassComment
public void setClassComment(String value)
Sets the value of the classComment property.- Parameters:
value- allowed object isString
-
getConstraints
public List<Constraint> getConstraints()
Gets the value of the constraints property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the constraints property.For example, to add a new item, do as follows:
getConstraints().add(newItem);Objects of the following type(s) are allowed in the list
Constraint
-
getFields
public List<EntityField> getFields()
Gets the value of the fields property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the fields property.For example, to add a new item, do as follows:
getFields().add(newItem);Objects of the following type(s) are allowed in the list
EntityField
-
-