Package net.sf.okapi.filters.xini.jaxb
Class Page
- java.lang.Object
-
- net.sf.okapi.filters.xini.jaxb.Page
-
public class Page extends Object
Contains the text content of a page element as well as additional page related informationJava class for Page complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Page"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="PageName" type="{}TokenMaxLen255" minOccurs="0"/> <element name="Elements" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Element" type="{}Element" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="ContextInformationURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="ThumbnailImageURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="PageID" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPage.ElementsJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected StringcontextInformationURLprotected Page.Elementselementsprotected intpageIDprotected StringpageNameprotected StringthumbnailImageURL
-
Constructor Summary
Constructors Constructor Description Page()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContextInformationURL()Gets the value of the contextInformationURL property.Page.ElementsgetElements()Gets the value of the elements property.intgetPageID()Gets the value of the pageID property.StringgetPageName()Gets the value of the pageName property.StringgetThumbnailImageURL()Gets the value of the thumbnailImageURL property.voidsetContextInformationURL(String value)Sets the value of the contextInformationURL property.voidsetElements(Page.Elements value)Sets the value of the elements property.voidsetPageID(int value)Sets the value of the pageID property.voidsetPageName(String value)Sets the value of the pageName property.voidsetThumbnailImageURL(String value)Sets the value of the thumbnailImageURL property.
-
-
-
Field Detail
-
pageName
protected String pageName
-
elements
protected Page.Elements elements
-
contextInformationURL
protected String contextInformationURL
-
thumbnailImageURL
protected String thumbnailImageURL
-
pageID
protected int pageID
-
-
Method Detail
-
getPageName
public String getPageName()
Gets the value of the pageName property.- Returns:
- possible object is
String
-
setPageName
public void setPageName(String value)
Sets the value of the pageName property.- Parameters:
value- allowed object isString
-
getElements
public Page.Elements getElements()
Gets the value of the elements property.- Returns:
- possible object is
Page.Elements
-
setElements
public void setElements(Page.Elements value)
Sets the value of the elements property.- Parameters:
value- allowed object isPage.Elements
-
getContextInformationURL
public String getContextInformationURL()
Gets the value of the contextInformationURL property.- Returns:
- possible object is
String
-
setContextInformationURL
public void setContextInformationURL(String value)
Sets the value of the contextInformationURL property.- Parameters:
value- allowed object isString
-
getThumbnailImageURL
public String getThumbnailImageURL()
Gets the value of the thumbnailImageURL property.- Returns:
- possible object is
String
-
setThumbnailImageURL
public void setThumbnailImageURL(String value)
Sets the value of the thumbnailImageURL property.- Parameters:
value- allowed object isString
-
getPageID
public int getPageID()
Gets the value of the pageID property.
-
setPageID
public void setPageID(int value)
Sets the value of the pageID property.
-
-