Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/SVGProperty.java')
-rw-r--r--plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/SVGProperty.java206
1 files changed, 0 insertions, 206 deletions
diff --git a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/SVGProperty.java b/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/SVGProperty.java
deleted file mode 100644
index e1b323ffcf7..00000000000
--- a/plugins/toolsmiths/gmf-tooling/org.eclipse.papyrus.gmf.graphdef/src/org/eclipse/papyrus/gmf/gmfgraph/SVGProperty.java
+++ /dev/null
@@ -1,206 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2020 Borland Software Corporation, CEA LIST, ARTAL
- *
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License 2.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Borland - initial API and implementation
- * Aurelien Didier (ARTAL) - aurelien.didier51@gmail.com - Bug 569174
- ******************************************************************************/
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: SVGProperty.java,v 1.1 2008/07/31 12:17:13 dstadnik Exp $
- */
-package org.eclipse.papyrus.gmf.gmfgraph;
-
-import org.eclipse.emf.ecore.EObject;
-
-/**
- * <!-- begin-user-doc -->
- * A representation of the model object '<em><b>SVG Property</b></em>'.
- * <!-- end-user-doc -->
- *
- * <p>
- * The following features are supported:
- * <ul>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getQuery <em>Query</em>}</li>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getAttribute <em>Attribute</em>}</li>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getType <em>Type</em>}</li>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getGetter <em>Getter</em>}</li>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getSetter <em>Setter</em>}</li>
- * <li>{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#isCallSuper <em>Call Super</em>}</li>
- * </ul>
- * </p>
- *
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty()
- * @model
- * @generated
- */
-public interface SVGProperty extends EObject {
- /**
- * Returns the value of the '<em><b>Query</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Query</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Query</em>' attribute.
- * @see #setQuery(String)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty_Query()
- * @model
- * @generated
- */
- String getQuery();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getQuery <em>Query</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Query</em>' attribute.
- * @see #getQuery()
- * @generated
- */
- void setQuery(String value);
-
- /**
- * Returns the value of the '<em><b>Attribute</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Attribute</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Attribute</em>' attribute.
- * @see #setAttribute(String)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty_Attribute()
- * @model
- * @generated
- */
- String getAttribute();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getAttribute <em>Attribute</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Attribute</em>' attribute.
- * @see #getAttribute()
- * @generated
- */
- void setAttribute(String value);
-
- /**
- * Returns the value of the '<em><b>Type</b></em>' attribute.
- * The literals are from the enumeration {@link org.eclipse.papyrus.gmf.gmfgraph.SVGPropertyType}.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Type</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Type</em>' attribute.
- * @see org.eclipse.papyrus.gmf.gmfgraph.SVGPropertyType
- * @see #setType(SVGPropertyType)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty_Type()
- * @model
- * @generated
- */
- SVGPropertyType getType();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getType <em>Type</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Type</em>' attribute.
- * @see org.eclipse.papyrus.gmf.gmfgraph.SVGPropertyType
- * @see #getType()
- * @generated
- */
- void setType(SVGPropertyType value);
-
- /**
- * Returns the value of the '<em><b>Getter</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Getter</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Getter</em>' attribute.
- * @see #setGetter(String)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty_Getter()
- * @model
- * @generated
- */
- String getGetter();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getGetter <em>Getter</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Getter</em>' attribute.
- * @see #getGetter()
- * @generated
- */
- void setGetter(String value);
-
- /**
- * Returns the value of the '<em><b>Setter</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Setter</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Setter</em>' attribute.
- * @see #setSetter(String)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty_Setter()
- * @model
- * @generated
- */
- String getSetter();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#getSetter <em>Setter</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Setter</em>' attribute.
- * @see #getSetter()
- * @generated
- */
- void setSetter(String value);
-
- /**
- * Returns the value of the '<em><b>Call Super</b></em>' attribute.
- * <!-- begin-user-doc -->
- * <p>
- * If the meaning of the '<em>Call Super</em>' attribute isn't clear,
- * there really should be more of a description here...
- * </p>
- * <!-- end-user-doc -->
- * @return the value of the '<em>Call Super</em>' attribute.
- * @see #setCallSuper(boolean)
- * @see org.eclipse.papyrus.gmf.gmfgraph.GMFGraphPackage#getSVGProperty_CallSuper()
- * @model
- * @generated
- */
- boolean isCallSuper();
-
- /**
- * Sets the value of the '{@link org.eclipse.papyrus.gmf.gmfgraph.SVGProperty#isCallSuper <em>Call Super</em>}' attribute.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param value the new value of the '<em>Call Super</em>' attribute.
- * @see #isCallSuper()
- * @generated
- */
- void setCallSuper(boolean value);
-
-} // SVGProperty

Back to the top