public class Dictionary extends Object
Java class for Dictionary complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Dictionary"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="description" maxOccurs="unbounded"> <complexType> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/> </extension> </simpleContent> </complexType> </element> <element name="download" type="{http://jgloss.sf.net/dictionaries/1.0}Download"/> <element name="homepage" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> <element name="license" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> <element name="copyright" type="{http://jgloss.sf.net/dictionaries/1.0}Copyright"/> <element name="languages"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="language" type="{http://www.w3.org/2001/XMLSchema}language" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
Dictionary.Description
Java class for anonymous complex type.
|
static class |
Dictionary.Languages
Java class for anonymous complex type.
|
Modifier and Type | Field and Description |
---|---|
protected Copyright |
copyright |
protected List<Dictionary.Description> |
description |
protected Download |
download |
protected String |
homepage |
protected Dictionary.Languages |
languages |
protected String |
license |
protected String |
name |
Constructor and Description |
---|
Dictionary() |
Modifier and Type | Method and Description |
---|---|
Copyright |
getCopyright()
Gets the value of the copyright property.
|
List<Dictionary.Description> |
getDescription()
Gets the value of the description property.
|
Download |
getDownload()
Gets the value of the download property.
|
String |
getHomepage()
Gets the value of the homepage property.
|
Dictionary.Languages |
getLanguages()
Gets the value of the languages property.
|
String |
getLicense()
Gets the value of the license property.
|
String |
getName()
Gets the value of the name property.
|
void |
setCopyright(Copyright value)
Sets the value of the copyright property.
|
void |
setDownload(Download value)
Sets the value of the download property.
|
void |
setHomepage(String value)
Sets the value of the homepage property.
|
void |
setLanguages(Dictionary.Languages value)
Sets the value of the languages property.
|
void |
setLicense(String value)
Sets the value of the license property.
|
void |
setName(String value)
Sets the value of the name property.
|
protected String name
protected List<Dictionary.Description> description
protected Download download
protected String homepage
protected String license
protected Copyright copyright
protected Dictionary.Languages languages
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public List<Dictionary.Description> getDescription()
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 set
method for the description property.
For example, to add a new item, do as follows:
getDescription().add(newItem);
Objects of the following type(s) are allowed in the list
Dictionary.Description
public Download getDownload()
Download
public void setDownload(Download value)
value
- allowed object is
Download
public String getHomepage()
String
public void setHomepage(String value)
value
- allowed object is
String
public String getLicense()
String
public void setLicense(String value)
value
- allowed object is
String
public Copyright getCopyright()
Copyright
public void setCopyright(Copyright value)
value
- allowed object is
Copyright
public Dictionary.Languages getLanguages()
Dictionary.Languages
public void setLanguages(Dictionary.Languages value)
value
- allowed object is
Dictionary.Languages
Copyright © 2001-2013 the JGloss developers. All Rights Reserved.