Package org.appng.xml.application
Class Property
- java.lang.Object
-
- org.appng.xml.application.Property
-
public class Property extends Object
Java class for property complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="property"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="clob" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="type" type="{http://www.appng.org/schema/application}propertyType" /> </extension> </simpleContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Booleanclobprotected Stringdescriptionprotected Stringidprotected PropertyTypetypeprotected Stringvalue
-
Constructor Summary
Constructors Constructor Description Property()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Gets the value of the description property.StringgetId()Gets the value of the id property.PropertyTypegetType()Gets the value of the type property.StringgetValue()Gets the value of the value property.BooleanisClob()Gets the value of the clob property.voidsetClob(Boolean value)Sets the value of the clob property.voidsetDescription(String value)Sets the value of the description property.voidsetId(String value)Sets the value of the id property.voidsetType(PropertyType value)Sets the value of the type property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Field Detail
-
value
protected String value
-
id
protected String id
-
description
protected String description
-
clob
protected Boolean clob
-
type
protected PropertyType type
-
-
Method Detail
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- Parameters:
value- allowed object isString
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Sets the value of the description property.- Parameters:
value- allowed object isString
-
isClob
public Boolean isClob()
Gets the value of the clob property.- Returns:
- possible object is
Boolean
-
setClob
public void setClob(Boolean value)
Sets the value of the clob property.- Parameters:
value- allowed object isBoolean
-
getType
public PropertyType getType()
Gets the value of the type property.- Returns:
- possible object is
PropertyType
-
setType
public void setType(PropertyType value)
Sets the value of the type property.- Parameters:
value- allowed object isPropertyType
-
-