Package com.flower.docs.domain.component
Class Tag
- java.lang.Object
-
- com.flower.docs.domain.component.Tag
-
- All Implemented Interfaces:
java.io.Serializable
public class Tag extends java.lang.Object implements java.io.Serializable<p>Java class for Tag complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="Tag"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="value" type="{http://flower.com/docs/domain/component}TagValueType" maxOccurs="unbounded"/> </sequence> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="readOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </restriction> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)java.lang.StringgetName()Gets the value of the name property.java.util.List<java.lang.String>getValue()Gets the value of the value property.inthashCode()booleanisReadOnly()Gets the value of the readOnly property.voidsetName(java.lang.String value)Sets the value of the name property.voidsetReadOnly(java.lang.Boolean value)Sets the value of the readOnly property.voidsetValue(java.util.List<java.lang.String> value)java.lang.StringtoString()
-
-
-
Method Detail
-
getValue
public java.util.List<java.lang.String> getValue()
Gets the value of the value property. <p> 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 JAXB object. This is why there is not a <CODE>set</CODE> method for the value property. <p> For example, to add a new item, do as follows: <pre> getValue().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listString
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
isReadOnly
public boolean isReadOnly()
Gets the value of the readOnly property.- Returns:
- possible object is
Boolean
-
setReadOnly
public void setReadOnly(java.lang.Boolean value)
Sets the value of the readOnly property.- Parameters:
value- allowed object isBoolean
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
setValue
public void setValue(java.util.List<java.lang.String> value)
-
-