Skip to content

Package: VStackItem

VStackItem

Coverage

1: /**
2: * Copyright (c) 2011-2014 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.spi.stack.model;
15:
16: import org.eclipse.emf.ecp.view.spi.model.VContainer;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Item</b></em>'.
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * <ul>
26: * <li>{@link org.eclipse.emf.ecp.view.spi.stack.model.VStackItem#getValue <em>Value</em>}</li>
27: * </ul>
28: * </p>
29: *
30: * @see org.eclipse.emf.ecp.view.spi.stack.model.VStackPackage#getStackItem()
31: * @model
32: * @generated
33: */
34: public interface VStackItem extends VContainer {
35:         /**
36:          * Returns the value of the '<em><b>Value</b></em>' attribute.
37:          * <!-- begin-user-doc -->
38:          * <p>
39:          * If the meaning of the '<em>Value</em>' attribute isn't clear, there really should be more of a description
40:          * here...
41:          * </p>
42:          * <!-- end-user-doc -->
43:          *
44:          * @return the value of the '<em>Value</em>' attribute.
45:          * @see #setValue(Object)
46:          * @see org.eclipse.emf.ecp.view.spi.stack.model.VStackPackage#getStackItem_Value()
47:          * @model
48:          * @generated
49:          */
50:         Object getValue();
51:
52:         /**
53:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.stack.model.VStackItem#getValue <em>Value</em>}'
54:          * attribute.
55:          * <!-- begin-user-doc -->
56:          * <!-- end-user-doc -->
57:          *
58:          * @param value the new value of the '<em>Value</em>' attribute.
59:          * @see #getValue()
60:          * @generated
61:          */
62:         void setValue(Object value);
63:
64: } // VStackItem