All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.shrinkwrap.descriptor.api.javaee6.IconType Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.descriptor.api.javaee6; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.javaee.*;
/**
 * This interface defines the contract for the  iconType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface IconType extends Child, 
    JavaeeIconCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: IconType ElementName: xsd:token ElementType : small-icon
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the small-icon element
    * @param smallIcon the value for the element small-icon 
    * @return the current instance of IconType 
    */
   public IconType smallIcon(String smallIcon);

   /**
    * Returns the small-icon element
    * @return the node defined for the element small-icon 
    */
   public String getSmallIcon();

   /**
    * Removes the small-icon element 
    * @return the current instance of IconType 
    */
   public IconType removeSmallIcon();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: IconType ElementName: xsd:token ElementType : large-icon
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the large-icon element
    * @param largeIcon the value for the element large-icon 
    * @return the current instance of IconType 
    */
   public IconType largeIcon(String largeIcon);

   /**
    * Returns the large-icon element
    * @return the node defined for the element large-icon 
    */
   public String getLargeIcon();

   /**
    * Removes the large-icon element 
    * @return the current instance of IconType 
    */
   public IconType removeLargeIcon();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: IconType ElementName: xsd:ID ElementType : id
   // MaxOccurs: -  isGeneric: true   isAttribute: true isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the id attribute
    * @param id the value for the attribute id 
    * @return the current instance of IconType 
    */
   public IconType id(String id);

   /**
    * Returns the id attribute
    * @return the value defined for the attribute id 
    */
   public String getId();

   /**
    * Removes the id attribute 
    * @return the current instance of IconType 
    */
   public IconType removeId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy