/******************************************************************************* * 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.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Preview</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.edt.ide.ui.internal.formatting.profile.Preview#getCode <em>Code</em>}</li> * <li>{@link org.eclipse.edt.ide.ui.internal.formatting.profile.Preview#getRef <em>Ref</em>}</li> * </ul> * </p> * * @see org.eclipse.edt.ide.ui.internal.formatting.profile.ProfilePackage#getPreview() * @model extendedMetaData="name='Preview' kind='empty'" * @generated */ public interface Preview extends EObject { /** * Returns the value of the '<em><b>Code</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Code</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Code</em>' attribute. * @see #setCode(String) * @see org.eclipse.edt.ide.ui.internal.formatting.profile.ProfilePackage#getPreview_Code() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='code'" * @generated */ String getCode(); /** * Sets the value of the '{@link org.eclipse.edt.ide.ui.internal.formatting.profile.Preview#getCode <em>Code</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Code</em>' attribute. * @see #getCode() * @generated */ void setCode(String value); /** * Returns the value of the '<em><b>Ref</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Ref</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Ref</em>' attribute. * @see #setRef(String) * @see org.eclipse.edt.ide.ui.internal.formatting.profile.ProfilePackage#getPreview_Ref() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='ref'" * @generated */ String getRef(); /** * Sets the value of the '{@link org.eclipse.edt.ide.ui.internal.formatting.profile.Preview#getRef <em>Ref</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Ref</em>' attribute. * @see #getRef() * @generated */ void setRef(String value); } // Preview