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

org.jboss.shrinkwrap.descriptor.api.orm10.FieldResult Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.orm.*;
import org.jboss.shrinkwrap.descriptor.api.orm.OrmFieldResultCommType;
/**
 * This interface defines the contract for the  field-result  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface FieldResult extends Child, 
    OrmFieldResultCommType> { 

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

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

   /**
    * Returns the name attribute
    * @return the value defined for the attribute name 
    */
   public String getName();

   /**
    * Removes the name attribute 
    * @return the current instance of FieldResult 
    */
   public FieldResult removeName();

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

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

   /**
    * Returns the column attribute
    * @return the value defined for the attribute column 
    */
   public String getColumn();

   /**
    * Removes the column attribute 
    * @return the current instance of FieldResult 
    */
   public FieldResult removeColumn();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy