/******************************************************************************* * Copyright (c) 2009 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. * * Contributors: * Oracle - initial API and implementation ******************************************************************************/ package org.eclipse.jpt.core.resource.orm; import org.eclipse.jpt.core.resource.xml.JpaEObject; /** * * A representation of the model object 'Xml Generator Container'. * * *

* The following features are supported: *

*

* * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlGeneratorContainer() * @model kind="class" interface="true" abstract="true" * @extends JpaEObject * @generated */ public interface XmlGeneratorContainer extends JpaEObject { /** * Returns the value of the 'Sequence Generator' containment reference. * *

* If the meaning of the 'Sequence Generator' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Sequence Generator' containment reference. * @see #setSequenceGenerator(XmlSequenceGenerator) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlGeneratorContainer_SequenceGenerator() * @model containment="true" * @generated */ XmlSequenceGenerator getSequenceGenerator(); /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.XmlGeneratorContainer#getSequenceGenerator Sequence Generator}' containment reference. * * * @param value the new value of the 'Sequence Generator' containment reference. * @see #getSequenceGenerator() * @generated */ void setSequenceGenerator(XmlSequenceGenerator value); /** * Returns the value of the 'Table Generator' containment reference. * *

* If the meaning of the 'Table Generator' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Table Generator' containment reference. * @see #setTableGenerator(XmlTableGenerator) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlGeneratorContainer_TableGenerator() * @model containment="true" * @generated */ XmlTableGenerator getTableGenerator(); /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.XmlGeneratorContainer#getTableGenerator Table Generator}' containment reference. * * * @param value the new value of the 'Table Generator' containment reference. * @see #getTableGenerator() * @generated */ void setTableGenerator(XmlTableGenerator value); } // XmlGeneratorContainer