Methods Summary |
---|
public java.lang.String | getDescription()Get the description
return description;
|
public java.lang.String | getDisplayName()Get the display name
return displayName;
|
public java.lang.String | getLanguage()Get the language
return lang;
|
public java.lang.String | getLargeIcon()Get the large icon
return largeIcon;
|
public java.lang.String | getSmallIcon()Get the small icon
return smallIcon;
|
public void | setDescription(java.lang.String description)Set the description
this.description = description;
|
public void | setDisplayName(java.lang.String displayName)Set the display name
this.displayName = displayName;
|
public void | setLargeIcon(java.lang.String icon)Set the large icon
this.largeIcon = icon;
|
public void | setSmallIcon(java.lang.String icon)Set the small icon
this.smallIcon = icon;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("DescriptionGroupMetaData").append('@");
buffer.append(Integer.toHexString(System.identityHashCode(this)));
buffer.append("[language=").append(lang);
if (description != null)
buffer.append(" description=").append(description);
if (displayName != null)
buffer.append(" displayName=").append(displayName);
if (smallIcon != null)
buffer.append(" smallIcon=").append(smallIcon);
if (largeIcon != null)
buffer.append(" largeIcon=").append(largeIcon);
buffer.append(']");
return buffer.toString();
|