/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.drawing; import java.math.BigInteger; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Glue Point Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getAlign <em>Align</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getId <em>Id</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getX <em>X</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getY <em>Y</em>}</li> * </ul> * </p> * * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getGluePointType() * @model extendedMetaData="name='glue-point_._type' kind='empty'" * @generated */ public interface GluePointType extends EObject { /** * Returns the value of the '<em><b>Align</b></em>' attribute. * The literals are from the enumeration {@link org.oasisopen.names.tc.opendocument.xmlns.drawing.AlignType}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Align</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Align</em>' attribute. * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.AlignType * @see #isSetAlign() * @see #unsetAlign() * @see #setAlign(AlignType) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getGluePointType_Align() * @model unsettable="true" * extendedMetaData="kind='attribute' name='align' namespace='##targetNamespace'" * @generated */ AlignType getAlign(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getAlign <em>Align</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Align</em>' attribute. * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.AlignType * @see #isSetAlign() * @see #unsetAlign() * @see #getAlign() * @generated */ void setAlign(AlignType value); /** * Unsets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getAlign <em>Align</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetAlign() * @see #getAlign() * @see #setAlign(AlignType) * @generated */ void unsetAlign(); /** * Returns whether the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getAlign <em>Align</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Align</em>' attribute is set. * @see #unsetAlign() * @see #getAlign() * @see #setAlign(AlignType) * @generated */ boolean isSetAlign(); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(BigInteger) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getGluePointType_Id() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.NonNegativeInteger" required="true" * extendedMetaData="kind='attribute' name='id' namespace='##targetNamespace'" * @generated */ BigInteger getId(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(BigInteger value); /** * Returns the value of the '<em><b>X</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>X</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>X</em>' attribute. * @see #setX(String) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getGluePointType_X() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.svg.XType1" required="true" * extendedMetaData="kind='attribute' name='x' namespace='urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'" * @generated */ String getX(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getX <em>X</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>X</em>' attribute. * @see #getX() * @generated */ void setX(String value); /** * Returns the value of the '<em><b>Y</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Y</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Y</em>' attribute. * @see #setY(String) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getGluePointType_Y() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.svg.YType1" required="true" * extendedMetaData="kind='attribute' name='y' namespace='urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'" * @generated */ String getY(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.GluePointType#getY <em>Y</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Y</em>' attribute. * @see #getY() * @generated */ void setY(String value); } // GluePointType