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

org.jboss.shrinkwrap.descriptor.api.facelettaglibrary22.FaceletTaglibFunctionType Maven / Gradle / Ivy

package org.jboss.shrinkwrap.descriptor.api.facelettaglibrary22; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.javaee7.IconType;
import org.jboss.shrinkwrap.descriptor.api.facelettaglibrary.*;
import org.jboss.shrinkwrap.descriptor.api.facelettaglibrary.JavaeeFaceletTaglibFunctionCommonType;
/**
 * This interface defines the contract for the  facelet-taglib-functionType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface FaceletTaglibFunctionType extends Child, 
    JavaeeFaceletTaglibFunctionCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FaceletTaglibFunctionType ElementName: xsd:string ElementType : description
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Creates for all String objects representing description elements, 
    * a new description element 
    * @param values list of description objects 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType description(String ... values);

   /**
    * Returns all description elements
    * @return list of description 
    */
   public List getAllDescription();

   /**
    * Removes the description element 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType removeAllDescription();
 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FaceletTaglibFunctionType ElementName: xsd:token ElementType : display-name
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Creates for all String objects representing display-name elements, 
    * a new display-name element 
    * @param values list of display-name objects 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType displayName(String ... values);

   /**
    * Returns all display-name elements
    * @return list of display-name 
    */
   public List getAllDisplayName();

   /**
    * Removes the display-name element 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType removeAllDisplayName();
 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FaceletTaglibFunctionType ElementName: javaee:iconType ElementType : icon
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new icon element will be created and returned.
    * Otherwise, the first existing icon element will be returned.
    * @return the instance defined for the element icon 
    */
   public IconType> getOrCreateIcon();

   /**
    * Creates a new icon element 
    * @return the new created instance of IconType> 
    */
   public IconType> createIcon();

   /**
    * Returns all icon elements
    * @return list of icon 
    */
   public List>> getAllIcon();

   /**
    * Removes all icon elements 
    * @return the current instance of IconType> 
    */
   public FaceletTaglibFunctionType removeAllIcon();
 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FaceletTaglibFunctionType ElementName: xsd:token ElementType : function-name
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the function-name element
    * @param functionName the value for the element function-name 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType functionName(String functionName);

   /**
    * Returns the function-name element
    * @return the node defined for the element function-name 
    */
   public String getFunctionName();

   /**
    * Removes the function-name element 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType removeFunctionName();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FaceletTaglibFunctionType ElementName: xsd:token ElementType : function-class
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the function-class element
    * @param functionClass the value for the element function-class 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType functionClass(String functionClass);

   /**
    * Returns the function-class element
    * @return the node defined for the element function-class 
    */
   public String getFunctionClass();

   /**
    * Removes the function-class element 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType removeFunctionClass();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FaceletTaglibFunctionType ElementName: xsd:token ElementType : function-signature
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the function-signature element
    * @param functionSignature the value for the element function-signature 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType functionSignature(String functionSignature);

   /**
    * Returns the function-signature element
    * @return the node defined for the element function-signature 
    */
   public String getFunctionSignature();

   /**
    * Removes the function-signature element 
    * @return the current instance of FaceletTaglibFunctionType 
    */
   public FaceletTaglibFunctionType removeFunctionSignature();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy