/** */ package org.eclipse.gmf.gmfgraph; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Vertical Label</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * org.eclipse.gmf.tooling.runtime.draw2d.labels.VerticalLabel * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.gmf.gmfgraph.VerticalLabel#getText <em>Text</em>}</li> * </ul> * </p> * * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getVerticalLabel() * @model * @generated */ public interface VerticalLabel extends RealFigure { /** * Returns the value of the '<em><b>Text</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Text</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Text</em>' attribute. * @see #setText(String) * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getVerticalLabel_Text() * @model * @generated */ String getText(); /** * Sets the value of the '{@link org.eclipse.gmf.gmfgraph.VerticalLabel#getText <em>Text</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Text</em>' attribute. * @see #getText() * @generated */ void setText(String value); } // VerticalLabel