Skip to content

Package: VDateTimeDisplayAttachment

VDateTimeDisplayAttachment

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: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Date Time Display Attachment</b></em>'.
19: *
20: * @since 1.8
21: * <!-- end-user-doc -->
22: *
23: * <p>
24: * The following features are supported:
25: * </p>
26: * <ul>
27: * <li>{@link org.eclipse.emf.ecp.view.spi.model.VDateTimeDisplayAttachment#getDisplayType <em>Display
28: * Type</em>}</li>
29: * </ul>
30: *
31: * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getDateTimeDisplayAttachment()
32: * @model
33: * @generated
34: */
35: public interface VDateTimeDisplayAttachment extends VAttachment {
36:         /**
37:          * Returns the value of the '<em><b>Display Type</b></em>' attribute.
38:          * The literals are from the enumeration {@link org.eclipse.emf.ecp.view.spi.model.DateTimeDisplayType}.
39:          * <!-- begin-user-doc -->
40:          * <p>
41:          * If the meaning of the '<em>Display Type</em>' attribute isn't clear,
42:          * there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Display Type</em>' attribute.
47:          * @see org.eclipse.emf.ecp.view.spi.model.DateTimeDisplayType
48:          * @see #setDisplayType(DateTimeDisplayType)
49:          * @see org.eclipse.emf.ecp.view.spi.model.VViewPackage#getDateTimeDisplayAttachment_DisplayType()
50:          * @model
51:          * @generated
52:          */
53:         DateTimeDisplayType getDisplayType();
54:
55:         /**
56:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.model.VDateTimeDisplayAttachment#getDisplayType
57:          * <em>Display Type</em>}' attribute.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @param value the new value of the '<em>Display Type</em>' attribute.
62:          * @see org.eclipse.emf.ecp.view.spi.model.DateTimeDisplayType
63:          * @see #getDisplayType()
64:          * @generated
65:          */
66:         void setDisplayType(DateTimeDisplayType value);
67:
68: } // VDateTimeDisplayAttachment