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

org.jboss.shrinkwrap.descriptor.api.facesconfig22.FacesConfigLocaleConfigType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.facesconfig.*;
import org.jboss.shrinkwrap.descriptor.api.facesconfig.JavaeeFacesConfigLocaleConfigCommonType;
/**
 * This interface defines the contract for the  faces-config-locale-configType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface FacesConfigLocaleConfigType extends Child, 
    JavaeeFacesConfigLocaleConfigCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigLocaleConfigType ElementName: xsd:string ElementType : default-locale
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the default-locale element
    * @param defaultLocale the value for the element default-locale 
    * @return the current instance of FacesConfigLocaleConfigType 
    */
   public FacesConfigLocaleConfigType defaultLocale(String defaultLocale);

   /**
    * Returns the default-locale element
    * @return the node defined for the element default-locale 
    */
   public String getDefaultLocale();

   /**
    * Removes the default-locale element 
    * @return the current instance of FacesConfigLocaleConfigType 
    */
   public FacesConfigLocaleConfigType removeDefaultLocale();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigLocaleConfigType ElementName: javaee:faces-config-localeType ElementType : supported-locale
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Creates for all String objects representing supported-locale elements, 
    * a new supported-locale element 
    * @param values list of supported-locale objects 
    * @return the current instance of FacesConfigLocaleConfigType 
    */
   public FacesConfigLocaleConfigType supportedLocale(String ... values);

   /**
    * Returns all supported-locale elements
    * @return list of supported-locale 
    */
   public List getAllSupportedLocale();

   /**
    * Removes the supported-locale element 
    * @return the current instance of FacesConfigLocaleConfigType 
    */
   public FacesConfigLocaleConfigType removeAllSupportedLocale();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy