Skip to content

Package: VCustomControl

VCustomControl

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: * Eugen Neufeld - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emf.ecp.view.spi.custom.model;
15:
16: import org.eclipse.emf.ecp.view.spi.model.VControl;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Control</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.custom.model.VCustomControl#getBundleName <em>Bundle Name</em>}</li>
27: * <li>{@link org.eclipse.emf.ecp.view.spi.custom.model.VCustomControl#getClassName <em>Class Name</em>}</li>
28: * </ul>
29: * </p>
30: *
31: * @see org.eclipse.emf.ecp.view.spi.custom.model.VCustomPackage#getCustomControl()
32: * @model
33: * @generated
34: * @since 1.3
35: */
36: public interface VCustomControl extends VControl {
37:         /**
38:          * Returns the value of the '<em><b>Bundle Name</b></em>' attribute.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Bundle Name</em>' attribute isn't clear, there really should be more of a description
42:          * here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Bundle Name</em>' attribute.
47:          * @see #setBundleName(String)
48:          * @see org.eclipse.emf.ecp.view.spi.custom.model.VCustomPackage#getCustomControl_BundleName()
49:          * @model required="true"
50:          * @generated
51:          */
52:         String getBundleName();
53:
54:         /**
55:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.custom.model.VCustomControl#getBundleName
56:          * <em>Bundle Name</em>}' attribute.
57:          * <!-- begin-user-doc -->
58:          * <!-- end-user-doc -->
59:          *
60:          * @param value the new value of the '<em>Bundle Name</em>' attribute.
61:          * @see #getBundleName()
62:          * @generated
63:          */
64:         void setBundleName(String value);
65:
66:         /**
67:          * Returns the value of the '<em><b>Class Name</b></em>' attribute.
68:          * <!-- begin-user-doc -->
69:          * <p>
70:          * If the meaning of the '<em>Class Name</em>' attribute isn't clear, there really should be more of a description
71:          * here...
72:          * </p>
73:          * <!-- end-user-doc -->
74:          *
75:          * @return the value of the '<em>Class Name</em>' attribute.
76:          * @see #setClassName(String)
77:          * @see org.eclipse.emf.ecp.view.spi.custom.model.VCustomPackage#getCustomControl_ClassName()
78:          * @model required="true"
79:          * @generated
80:          */
81:         String getClassName();
82:
83:         /**
84:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.custom.model.VCustomControl#getClassName
85:          * <em>Class Name</em>}' attribute.
86:          * <!-- begin-user-doc -->
87:          * <!-- end-user-doc -->
88:          *
89:          * @param value the new value of the '<em>Class Name</em>' attribute.
90:          * @see #getClassName()
91:          * @generated
92:          */
93:         void setClassName(String value);
94:
95: } // VCustomControl