Package com.emc.d2fs.models.markup
Class Markup
java.lang.Object
com.emc.d2fs.models.markup.Markup
- All Implemented Interfaces:
Serializable
Java class for Markup complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Markup">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
<element name="Author" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="Date" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="AvailableForEdit" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="AvailableForReview" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="Readable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="Editable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the author property.getDate()Gets the value of the date property.getTitle()Gets the value of the title property.getURI()Gets the value of the uri property.booleanGets the value of the availableForEdit property.booleanGets the value of the availableForReview property.booleanGets the value of the editable property.booleanGets the value of the readable property.voidSets the value of the author property.voidsetAvailableForEdit(boolean value) Sets the value of the availableForEdit property.voidsetAvailableForReview(boolean value) Sets the value of the availableForReview property.voidSets the value of the date property.voidsetEditable(boolean value) Sets the value of the editable property.voidsetReadable(boolean value) Sets the value of the readable property.voidSets the value of the title property.voidSets the value of the uri property.
-
Constructor Details
-
Markup
public Markup()
-
-
Method Details
-
getURI
Gets the value of the uri property.- Returns:
- possible object is
String
-
setURI
Sets the value of the uri property.- Parameters:
value- allowed object isString
-
getAuthor
Gets the value of the author property.- Returns:
- possible object is
String
-
setAuthor
Sets the value of the author property.- Parameters:
value- allowed object isString
-
getTitle
Gets the value of the title property.- Returns:
- possible object is
String
-
setTitle
Sets the value of the title property.- Parameters:
value- allowed object isString
-
getDate
Gets the value of the date property.- Returns:
- possible object is
String
-
setDate
Sets the value of the date property.- Parameters:
value- allowed object isString
-
isAvailableForEdit
public boolean isAvailableForEdit()Gets the value of the availableForEdit property. -
setAvailableForEdit
public void setAvailableForEdit(boolean value) Sets the value of the availableForEdit property. -
isAvailableForReview
public boolean isAvailableForReview()Gets the value of the availableForReview property. -
setAvailableForReview
public void setAvailableForReview(boolean value) Sets the value of the availableForReview property. -
isReadable
public boolean isReadable()Gets the value of the readable property. -
setReadable
public void setReadable(boolean value) Sets the value of the readable property. -
isEditable
public boolean isEditable()Gets the value of the editable property. -
setEditable
public void setEditable(boolean value) Sets the value of the editable property.
-