/******************************************************************************* * Copyright © 2008, 2013 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.ide.ui.internal.formatting.profile; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Controls</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.edt.ide.ui.internal.formatting.profile.Controls#getControlGroup <em>Control Group</em>}</li> * <li>{@link org.eclipse.edt.ide.ui.internal.formatting.profile.Controls#getControl <em>Control</em>}</li> * </ul> * </p> * * @see org.eclipse.edt.ide.ui.internal.formatting.profile.ProfilePackage#getControls() * @model extendedMetaData="name='Controls' kind='elementOnly'" * @generated */ public interface Controls extends EObject { /** * Returns the value of the '<em><b>Control Group</b></em>' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Control Group</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Control Group</em>' attribute list. * @see org.eclipse.edt.ide.ui.internal.formatting.profile.ProfilePackage#getControls_ControlGroup() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" * extendedMetaData="kind='group' name='control:group' namespace='##targetNamespace'" * @generated */ FeatureMap getControlGroup(); /** * Returns the value of the '<em><b>Control</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.edt.ide.ui.internal.formatting.profile.Control}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Control</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Control</em>' containment reference list. * @see org.eclipse.edt.ide.ui.internal.formatting.profile.ProfilePackage#getControls_Control() * @model type="org.eclipse.edt.ide.ui.internal.formatting.profile.Control" containment="true" transient="true" changeable="false" volatile="true" derived="true" * extendedMetaData="kind='element' name='control' namespace='##targetNamespace' group='control:group'" * @generated */ EList getControl(); } // Controls