Package org.xwiki.icon.rest.model.jaxb
Class Icon
- java.lang.Object
-
- org.xwiki.icon.rest.model.jaxb.Icon
-
public class Icon extends Object
Stores an icon metatada.Java class for Icon complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Icon"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="iconSetType" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="iconSetName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="cssClass" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
cssClass
protected String
iconSetName
protected String
iconSetType
protected String
name
protected String
url
-
Constructor Summary
Constructors Constructor Description Icon()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCssClass()
Gets the value of the cssClass property.String
getIconSetName()
Gets the value of the iconSetName property.String
getIconSetType()
Gets the value of the iconSetType property.String
getName()
Gets the value of the name property.String
getUrl()
Gets the value of the url property.void
setCssClass(String value)
Sets the value of the cssClass property.void
setIconSetName(String value)
Sets the value of the iconSetName property.void
setIconSetType(String value)
Sets the value of the iconSetType property.void
setName(String value)
Sets the value of the name property.void
setUrl(String value)
Sets the value of the url property.Icon
withCssClass(String value)
Icon
withIconSetName(String value)
Icon
withIconSetType(String value)
Icon
withName(String value)
Icon
withUrl(String value)
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getIconSetType
public String getIconSetType()
Gets the value of the iconSetType property.- Returns:
- possible object is
String
-
setIconSetType
public void setIconSetType(String value)
Sets the value of the iconSetType property.- Parameters:
value
- allowed object isString
-
getIconSetName
public String getIconSetName()
Gets the value of the iconSetName property.- Returns:
- possible object is
String
-
setIconSetName
public void setIconSetName(String value)
Sets the value of the iconSetName property.- Parameters:
value
- allowed object isString
-
getCssClass
public String getCssClass()
Gets the value of the cssClass property.- Returns:
- possible object is
String
-
setCssClass
public void setCssClass(String value)
Sets the value of the cssClass property.- Parameters:
value
- allowed object isString
-
getUrl
public String getUrl()
Gets the value of the url property.- Returns:
- possible object is
String
-
setUrl
public void setUrl(String value)
Sets the value of the url property.- Parameters:
value
- allowed object isString
-
-