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

org.jboss.shrinkwrap.descriptor.api.validationMapping11.GroupConversionType Maven / Gradle / Ivy

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

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

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

   /**
    * Sets the from attribute
    * @param from the value for the attribute from 
    * @return the current instance of GroupConversionType 
    */
   public GroupConversionType from(String from);

   /**
    * Returns the from attribute
    * @return the value defined for the attribute from 
    */
   public String getFrom();

   /**
    * Removes the from attribute 
    * @return the current instance of GroupConversionType 
    */
   public GroupConversionType removeFrom();

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

   /**
    * Sets the to attribute
    * @param to the value for the attribute to 
    * @return the current instance of GroupConversionType 
    */
   public GroupConversionType to(String to);

   /**
    * Returns the to attribute
    * @return the value defined for the attribute to 
    */
   public String getTo();

   /**
    * Removes the to attribute 
    * @return the current instance of GroupConversionType 
    */
   public GroupConversionType removeTo();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy