Skip to content

Package: VHasTooltip

VHasTooltip

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: * Eugen Neufeld - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.spi.model;
15:
16: import org.eclipse.emf.ecore.EObject;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Has Tooltip</b></em>'.
21: *
22: * @since 1.13
23: *
24: * <!-- end-user-doc -->
25: *
26: * <p>
27: * The following features are supported:
28: * </p>
29: * <ul>
30: * <li>{@link org.eclipse.emf.ecp.view.spi.model.VHasTooltip#getTooltip <em>Tooltip</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getHasTooltip()
34: * @model interface="true" abstract="true"
35: * @generated
36: */
37: public interface VHasTooltip extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Tooltip</b></em>' attribute.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Tooltip</em>' attribute isn't clear,
43:          * there really should be more of a description here...
44:          * </p>
45:          * <!-- end-user-doc -->
46:          *
47:          * @return the value of the '<em>Tooltip</em>' attribute.
48:          * @see #setTooltip(String)
49:          * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getHasTooltip_Tooltip()
50:          * @model
51:          * @generated
52:          */
53:         String getTooltip();
54:
55:         /**
56:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.model.VHasTooltip#getTooltip <em>Tooltip</em>}'
57:          * attribute.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @param value the new value of the '<em>Tooltip</em>' attribute.
62:          * @see #getTooltip()
63:          * @generated
64:          */
65:         void setTooltip(String value);
66:
67: } // VHasTooltip