Skip to content

Package: VTBackgroundStyleProperty

VTBackgroundStyleProperty

Coverage

1: /**
2: * Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.style.background.model;
15:
16: import org.eclipse.emf.ecp.view.template.model.VTStyleProperty;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Style Property</b></em>'.
21: *
22: * @since 1.6
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * <ul>
28: * <li>{@link org.eclipse.emf.ecp.view.template.style.background.model.VTBackgroundStyleProperty#getColor <em>
29: * Color </em>}</li>
30: * </ul>
31: * </p>
32: *
33: * @see org.eclipse.emf.ecp.view.template.style.background.model.VTBackgroundPackage#getBackgroundStyleProperty()
34: * @model
35: * @generated
36: */
37: public interface VTBackgroundStyleProperty extends VTStyleProperty {
38:         /**
39:          * Returns the value of the '<em><b>Color</b></em>' attribute.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Color</em>' attribute isn't clear, there really should be more of a description
43:          * here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Color</em>' attribute.
48:          * @see #setColor(String)
49:          * @see org.eclipse.emf.ecp.view.template.style.background.model.VTBackgroundPackage#getBackgroundStyleProperty_Color()
50:          * @model
51:          * @generated
52:          */
53:         String getColor();
54:
55:         /**
56:          * Sets the value of the '
57:          * {@link org.eclipse.emf.ecp.view.template.style.background.model.VTBackgroundStyleProperty#getColor
58:          * <em>Color</em>}' attribute.
59:          * <!-- begin-user-doc -->
60:          * <!-- end-user-doc -->
61:          *
62:          * @param value the new value of the '<em>Color</em>' attribute.
63:          * @see #getColor()
64:          * @generated
65:          */
66:         void setColor(String value);
67:
68: } // VTBackgroundStyleProperty