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

org.jboss.shrinkwrap.descriptor.api.beans10.Decorators Maven / Gradle / Ivy

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

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

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

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

   /**
    * Returns all class elements
    * @return list of class 
    */
   public List getAllClazz();

   /**
    * Removes the class element 
    * @return the current instance of Decorators 
    */
   public Decorators removeAllClazz();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy