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

org.jboss.shrinkwrap.descriptor.api.webcommon30.LocaleEncodingMappingType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.webcommon.*;
import org.jboss.shrinkwrap.descriptor.api.javaee.*;
import org.jboss.shrinkwrap.descriptor.api.jsp.*;
import org.jboss.shrinkwrap.descriptor.api.webapp.JavaeeLocaleEncodingMappingCommonType;
/**
 * This interface defines the contract for the  locale-encoding-mappingType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface LocaleEncodingMappingType extends Child, 
    JavaeeLocaleEncodingMappingCommonType> { 

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

   /**
    * Sets the locale element
    * @param locale the value for the element locale 
    * @return the current instance of LocaleEncodingMappingType 
    */
   public LocaleEncodingMappingType locale(String locale);

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

   /**
    * Removes the locale element 
    * @return the current instance of LocaleEncodingMappingType 
    */
   public LocaleEncodingMappingType removeLocale();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: LocaleEncodingMappingType ElementName: xsd:string ElementType : encoding
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the encoding element
    * @param encoding the value for the element encoding 
    * @return the current instance of LocaleEncodingMappingType 
    */
   public LocaleEncodingMappingType encoding(String encoding);

   /**
    * Returns the encoding element
    * @return the node defined for the element encoding 
    */
   public String getEncoding();

   /**
    * Removes the encoding element 
    * @return the current instance of LocaleEncodingMappingType 
    */
   public LocaleEncodingMappingType removeEncoding();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy