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

org.jboss.shrinkwrap.descriptor.api.orm10.AssociationOverride 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.orm10.JoinColumn;
import org.jboss.shrinkwrap.descriptor.api.orm.*;
import org.jboss.shrinkwrap.descriptor.api.orm.OrmAssociationOverrideCommType;

import org.jboss.shrinkwrap.descriptor.api.orm10.JoinColumn;/**
 * This interface defines the contract for the  association-override  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface AssociationOverride extends Child, 
    OrmAssociationOverrideCommType,
    JoinColumn>> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AssociationOverride ElementName: orm:join-column ElementType : join-column
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new join-column element will be created and returned.
    * Otherwise, the first existing join-column element will be returned.
    * @return the instance defined for the element join-column 
    */
   public JoinColumn> getOrCreateJoinColumn();

   /**
    * Creates a new join-column element 
    * @return the new created instance of JoinColumn> 
    */
   public JoinColumn> createJoinColumn();

   /**
    * Returns all join-column elements
    * @return list of join-column 
    */
   public List>> getAllJoinColumn();

   /**
    * Removes all join-column elements 
    * @return the current instance of JoinColumn> 
    */
   public AssociationOverride removeAllJoinColumn();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy