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

org.jboss.shrinkwrap.descriptor.api.j2ee14.EmptyType Maven / Gradle / Ivy

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy