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

org.jboss.shrinkwrap.descriptor.api.jsp22.TaglibType Maven / Gradle / Ivy

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

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

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TaglibType ElementName: xsd:token ElementType : taglib-uri
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the taglib-uri element
    * @param taglibUri the value for the element taglib-uri 
    * @return the current instance of TaglibType 
    */
   public TaglibType taglibUri(String taglibUri);

   /**
    * Returns the taglib-uri element
    * @return the node defined for the element taglib-uri 
    */
   public String getTaglibUri();

   /**
    * Removes the taglib-uri element 
    * @return the current instance of TaglibType 
    */
   public TaglibType removeTaglibUri();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: TaglibType ElementName: xsd:token ElementType : taglib-location
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the taglib-location element
    * @param taglibLocation the value for the element taglib-location 
    * @return the current instance of TaglibType 
    */
   public TaglibType taglibLocation(String taglibLocation);

   /**
    * Returns the taglib-location element
    * @return the node defined for the element taglib-location 
    */
   public String getTaglibLocation();

   /**
    * Removes the taglib-location element 
    * @return the current instance of TaglibType 
    */
   public TaglibType removeTaglibLocation();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy