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

org.jboss.shrinkwrap.descriptor.api.connector10.Icon Maven / Gradle / Ivy

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

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

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: Icon ElementName: xsd:string 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 Icon 
    */
   public Icon 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 Icon 
    */
   public Icon removeSmallIcon();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: Icon ElementName: xsd:string 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 Icon 
    */
   public Icon 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 Icon 
    */
   public Icon removeLargeIcon();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy