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

org.jboss.shrinkwrap.descriptor.api.jsptaglibrary20.ExtensibleType 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.jsptaglibrary20.ExtensibleType;
/**
 * This interface defines the contract for the  extensibleType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface ExtensibleType extends Child { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ExtensibleType ElementName: j2ee:extensibleType ElementType : extensibleType
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new extensibleType element with the given value will be created.
    * Otherwise, the existing extensibleType element will be returned.
    * @return  a new or existing instance of ExtensibleType> 
    */
   public ExtensibleType> getOrCreateExtensibleType();

   /**
    * Removes the extensibleType element 
    * @return the current instance of ExtensibleType 
    */
   public ExtensibleType removeExtensibleType();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy