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

org.jboss.shrinkwrap.descriptor.api.jsptaglibrary20.TldAttributeType Maven / Gradle / Ivy

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

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

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType 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 TldAttributeType 
    */
   public TldAttributeType description(String ... values);

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

   /**
    * Removes the description element 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType removeAllDescription();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType ElementName: xsd:token ElementType : name
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the name element
    * @param name the value for the element name 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType name(String name);

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

   /**
    * Removes the name element 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType removeName();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType ElementName: j2ee:generic-booleanType ElementType : required
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: true isDataType: false
   // --------------------------------------------------------------------------------------------------------||
   /**
    * Sets the required element
    * @param required the value for the element required 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType required(GenericBooleanType required);
   /**
    * Sets the required element
    * @param required the value for the element required 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType required(String required);

   /**
    * Returns the required element
    * @return the value found for the element required 
    */
   public GenericBooleanType getRequired();

   /**
    * Returns the required element
    * @return the value found for the element required 
    */
   public String  getRequiredAsString();

   /**
    * Removes the required attribute 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType removeRequired();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType ElementName: j2ee:generic-booleanType ElementType : rtexprvalue
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: true isDataType: false
   // --------------------------------------------------------------------------------------------------------||
   /**
    * Sets the rtexprvalue element
    * @param rtexprvalue the value for the element rtexprvalue 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType rtexprvalue(GenericBooleanType rtexprvalue);
   /**
    * Sets the rtexprvalue element
    * @param rtexprvalue the value for the element rtexprvalue 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType rtexprvalue(String rtexprvalue);

   /**
    * Returns the rtexprvalue element
    * @return the value found for the element rtexprvalue 
    */
   public GenericBooleanType getRtexprvalue();

   /**
    * Returns the rtexprvalue element
    * @return the value found for the element rtexprvalue 
    */
   public String  getRtexprvalueAsString();

   /**
    * Removes the rtexprvalue attribute 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType removeRtexprvalue();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType ElementName: xsd:token ElementType : type
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the type element
    * @param type the value for the element type 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType type(String type);

   /**
    * Returns the type element
    * @return the node defined for the element type 
    */
   public String getType();

   /**
    * Removes the type element 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType removeType();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType ElementName: j2ee:generic-booleanType ElementType : fragment
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: true isDataType: false
   // --------------------------------------------------------------------------------------------------------||
   /**
    * Sets the fragment element
    * @param fragment the value for the element fragment 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType fragment(GenericBooleanType fragment);
   /**
    * Sets the fragment element
    * @param fragment the value for the element fragment 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType fragment(String fragment);

   /**
    * Returns the fragment element
    * @return the value found for the element fragment 
    */
   public GenericBooleanType getFragment();

   /**
    * Returns the fragment element
    * @return the value found for the element fragment 
    */
   public String  getFragmentAsString();

   /**
    * Removes the fragment attribute 
    * @return the current instance of TldAttributeType 
    */
   public TldAttributeType removeFragment();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TldAttributeType 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 TldAttributeType 
    */
   public TldAttributeType 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 TldAttributeType 
    */
   public TldAttributeType removeId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy