Skip to content

Package: VTKeyBinding

VTKeyBinding

Coverage

1: /**
2: * Copyright (c) 2011-2018 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.template.style.keybinding.model;
15:
16: import org.eclipse.emf.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Key Binding</b></em>'.
21: *
22: * @since 1.18
23: * <!-- end-user-doc -->
24: *
25: * <p>
26: * The following features are supported:
27: * </p>
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeyBinding#getId <em>Id</em>}</li>
30: * <li>{@link org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeyBinding#getKeySequence <em>Key
31: * Sequence</em>}</li>
32: * </ul>
33: *
34: * @see org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeybindingPackage#getKeyBinding()
35: * @model
36: * @generated
37: */
38: public interface VTKeyBinding extends EObject {
39:         /**
40:          * Returns the value of the '<em><b>Id</b></em>' attribute.
41:          * <!-- begin-user-doc -->
42:          * <p>
43:          * If the meaning of the '<em>Id</em>' attribute isn't clear,
44:          * there really should be more of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Id</em>' attribute.
49:          * @see #setId(String)
50:          * @see org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeybindingPackage#getKeyBinding_Id()
51:          * @model
52:          * @generated
53:          */
54:         String getId();
55:
56:         /**
57:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeyBinding#getId
58:          * <em>Id</em>}' attribute.
59:          * <!-- begin-user-doc -->
60:          * <!-- end-user-doc -->
61:          *
62:          * @param value the new value of the '<em>Id</em>' attribute.
63:          * @see #getId()
64:          * @generated
65:          */
66:         void setId(String value);
67:
68:         /**
69:          * Returns the value of the '<em><b>Key Sequence</b></em>' attribute.
70:          * <!-- begin-user-doc -->
71:          * <p>
72:          * If the meaning of the '<em>Key Sequence</em>' attribute isn't clear,
73:          * there really should be more of a description here...
74:          * </p>
75:          * <!-- end-user-doc -->
76:          *
77:          * @return the value of the '<em>Key Sequence</em>' attribute.
78:          * @see #setKeySequence(String)
79:          * @see org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeybindingPackage#getKeyBinding_KeySequence()
80:          * @model
81:          * @generated
82:          */
83:         String getKeySequence();
84:
85:         /**
86:          * Sets the value of the
87:          * '{@link org.eclipse.emf.ecp.view.template.style.keybinding.model.VTKeyBinding#getKeySequence <em>Key
88:          * Sequence</em>}' attribute.
89:          * <!-- begin-user-doc -->
90:          * <!-- end-user-doc -->
91:          *
92:          * @param value the new value of the '<em>Key Sequence</em>' attribute.
93:          * @see #getKeySequence()
94:          * @generated
95:          */
96:         void setKeySequence(String value);
97:
98: } // VTKeyBinding