blob: 938f5bc2f6ab47b035cdb19c90d9d9d10b8e2c94 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2005, 2010 SAP AG.
* 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:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*/
package org.eclipse.graphiti.mm.algorithms.styles;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Gradient Colored Location</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation#getLocationType <em>Location Type</em>}</li>
* <li>{@link org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation#getLocationValue <em>Location Value</em>}</li>
* <li>{@link org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation#getColor <em>Color</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.graphiti.mm.algorithms.styles.StylesPackage#getGradientColoredLocation()
* @model
* @generated
*/
public interface GradientColoredLocation extends EObject {
/**
* Returns the value of the '<em><b>Location Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.graphiti.mm.algorithms.styles.LocationType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location 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>Location Type</em>' attribute.
* @see org.eclipse.graphiti.mm.algorithms.styles.LocationType
* @see #setLocationType(LocationType)
* @see org.eclipse.graphiti.mm.algorithms.styles.StylesPackage#getGradientColoredLocation_LocationType()
* @model required="true"
* @generated
*/
LocationType getLocationType();
/**
* Sets the value of the '{@link org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation#getLocationType <em>Location Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location Type</em>' attribute.
* @see org.eclipse.graphiti.mm.algorithms.styles.LocationType
* @see #getLocationType()
* @generated
*/
void setLocationType(LocationType value);
/**
* Returns the value of the '<em><b>Location Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location Value</em>' attribute.
* @see #setLocationValue(Integer)
* @see org.eclipse.graphiti.mm.algorithms.styles.StylesPackage#getGradientColoredLocation_LocationValue()
* @model required="true"
* @generated
*/
Integer getLocationValue();
/**
* Sets the value of the '{@link org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation#getLocationValue <em>Location Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location Value</em>' attribute.
* @see #getLocationValue()
* @generated
*/
void setLocationValue(Integer value);
/**
* Returns the value of the '<em><b>Color</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Color</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Color</em>' containment reference.
* @see #setColor(Color)
* @see org.eclipse.graphiti.mm.algorithms.styles.StylesPackage#getGradientColoredLocation_Color()
* @model containment="true" resolveProxies="true" required="true"
* @generated
*/
Color getColor();
/**
* Sets the value of the '{@link org.eclipse.graphiti.mm.algorithms.styles.GradientColoredLocation#getColor <em>Color</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Color</em>' containment reference.
* @see #getColor()
* @generated
*/
void setColor(Color value);
} // GradientColoredLocation