/******************************************************************************* * 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.util.List; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Marker Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getD <em>D</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getDisplayName <em>Display Name</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getName <em>Name</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getViewBox <em>View Box</em>}</li> * </ul> * </p> * * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getMarkerType() * @model extendedMetaData="name='marker_._type' kind='empty'" * @generated */ public interface MarkerType extends EObject { /** * Returns the value of the '<em><b>D</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>D</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>D</em>' attribute. * @see #setD(String) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getMarkerType_D() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.PathData" required="true" * extendedMetaData="kind='attribute' name='d' namespace='urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'" * @generated */ String getD(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getD <em>D</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>D</em>' attribute. * @see #getD() * @generated */ void setD(String value); /** * Returns the value of the '<em><b>Display Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Display Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Display Name</em>' attribute. * @see #setDisplayName(String) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getMarkerType_DisplayName() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.String" * extendedMetaData="kind='attribute' name='display-name' namespace='##targetNamespace'" * @generated */ String getDisplayName(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getDisplayName <em>Display Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Display Name</em>' attribute. * @see #getDisplayName() * @generated */ void setDisplayName(String value); /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getMarkerType_Name() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.text.StyleName" required="true" * extendedMetaData="kind='attribute' name='name' namespace='##targetNamespace'" * @generated */ String getName(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>View Box</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>View Box</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>View Box</em>' attribute. * @see #setViewBox(List) * @see org.oasisopen.names.tc.opendocument.xmlns.drawing.DrawingPackage#getMarkerType_ViewBox() * @model dataType="org.oasisopen.names.tc.opendocument.xmlns.svg.ViewBoxType" required="true" many="false" * extendedMetaData="kind='attribute' name='viewBox' namespace='urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0'" * @generated */ List getViewBox(); /** * Sets the value of the '{@link org.oasisopen.names.tc.opendocument.xmlns.drawing.MarkerType#getViewBox <em>View Box</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>View Box</em>' attribute. * @see #getViewBox() * @generated */ void setViewBox(List value); } // MarkerType