/******************************************************************************* * 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.jpa.eclipselink.core.resource.orm; import org.eclipse.emf.common.util.EList; import org.eclipse.jpt.common.core.resource.xml.EBaseObject; /** * * A representation of the model object 'Xml Property Container'. * * *

* The following features are supported: *

*

* * @see org.eclipse.jpt.jpa.eclipselink.core.resource.orm.EclipseLinkOrmPackage#getXmlPropertyContainer() * @model kind="class" interface="true" abstract="true" * @extends EBaseObject * @generated */ public interface XmlPropertyContainer extends EBaseObject { /** * Returns the value of the 'Properties' containment reference list. * The list contents are of type {@link org.eclipse.jpt.jpa.eclipselink.core.resource.orm.XmlProperty}. * *

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

* * @return the value of the 'Properties' containment reference list. * @see org.eclipse.jpt.jpa.eclipselink.core.resource.orm.EclipseLinkOrmPackage#getXmlPropertyContainer_Properties() * @model containment="true" * @generated */ EList getProperties(); } // XmlPropertyContainer