Package org.apache.openejb.jee
Class Icon
- java.lang.Object
-
- org.apache.openejb.jee.Icon
-
public class Icon extends Object implements Keyable<String>
javaee6.xsdJava class for iconType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="iconType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="small-icon" type="{http://java.sun.com/xml/ns/javaee}pathType" minOccurs="0"/> <element name="large-icon" type="{http://java.sun.com/xml/ns/javaee}pathType" minOccurs="0"/> </sequence> <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Icon()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()StringgetKey()Gets the immutable key for this object.StringgetLang()StringgetLargeIcon()StringgetSmallIcon()voidsetId(String value)voidsetLang(String value)voidsetLargeIcon(String value)voidsetSmallIcon(String value)
-
-
-
Method Detail
-
getSmallIcon
public String getSmallIcon()
-
setSmallIcon
public void setSmallIcon(String value)
-
getLargeIcon
public String getLargeIcon()
-
setLargeIcon
public void setLargeIcon(String value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
getLang
public String getLang()
-
setLang
public void setLang(String value)
-
-