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

org.jboss.shrinkwrap.descriptor.api.validationConfiguration11.DefaultValidatedExecutableTypesType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.validationConfiguration11.ExecutableType;
import org.jboss.shrinkwrap.descriptor.api.validationConfiguration.*;
import org.jboss.shrinkwrap.descriptor.api.validationConfiguration.ConfigDefaultValidatedExecutableCommonTypesCommonType;
/**
 * This interface defines the contract for the  default-validated-executable-typesType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface DefaultValidatedExecutableTypesType extends Child, 
    ConfigDefaultValidatedExecutableCommonTypesCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: DefaultValidatedExecutableTypesType ElementName: config:executable-type ElementType : executable-type
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: true isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Creates for all config:executable-type objects representing executable-type elements, 
    * a new executable-type element 
    * @param values list of executable-type objects 
    * @return the current instance of DefaultValidatedExecutableTypesType 
    */
   public DefaultValidatedExecutableTypesType executableType(ExecutableType ... values);

   /**
    * Creates for all String objects representing executable-type elements, 
    * a new executable-type element 
    * @param values list of executable-type objects 
    * @return the current instance of DefaultValidatedExecutableTypesType 
    */
   public DefaultValidatedExecutableTypesType executableType(String ... values);

   /**
    * Returns all executable-type elements
    * @return list of executable-type 
    */
   public List getAllExecutableType();

   /**
    * Removes the executable-type element 
    * @return the current instance of DefaultValidatedExecutableTypesType 
    */
   public DefaultValidatedExecutableTypesType removeAllExecutableType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy