Interface Icon<T>
-
- All Superinterfaces:
org.jboss.shrinkwrap.descriptor.api.Child<T>
- All Known Implementing Classes:
IconImpl
public interface Icon<T> extends org.jboss.shrinkwrap.descriptor.api.Child<T>This interface defines the contract for theiconxsd type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetLargeIcon()Returns thelarge-iconelementStringgetSmallIcon()Returns thesmall-iconelementIcon<T>largeIcon(String largeIcon)Sets thelarge-iconelementIcon<T>removeLargeIcon()Removes thelarge-iconelementIcon<T>removeSmallIcon()Removes thesmall-iconelementIcon<T>smallIcon(String smallIcon)Sets thesmall-iconelement
-
-
-
Method Detail
-
smallIcon
Icon<T> smallIcon(String smallIcon)
Sets thesmall-iconelement- Parameters:
smallIcon- the value for the elementsmall-icon- Returns:
- the current instance of
Icon
-
getSmallIcon
String getSmallIcon()
Returns thesmall-iconelement- Returns:
- the node defined for the element
small-icon
-
removeSmallIcon
Icon<T> removeSmallIcon()
Removes thesmall-iconelement- Returns:
- the current instance of
Icon
-
largeIcon
Icon<T> largeIcon(String largeIcon)
Sets thelarge-iconelement- Parameters:
largeIcon- the value for the elementlarge-icon- Returns:
- the current instance of
Icon
-
getLargeIcon
String getLargeIcon()
Returns thelarge-iconelement- Returns:
- the node defined for the element
large-icon
-
-