Skip to content

Package: VSpan

VSpan

Coverage

1: /**
2: * Copyright (c) 2011-2013 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.groupedgrid.model;
15:
16: import org.eclipse.emf.ecp.view.spi.model.VAttachment;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * A representation of the model object '<em><b>Span</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.groupedgrid.model.VSpan#getHorizontalSpan <em>Horizontal Span</em>}</li>
27: * </ul>
28: * </p>
29: *
30: * @see org.eclipse.emf.ecp.view.spi.groupedgrid.model.VGroupedGridPackage#getSpan()
31: * @model
32: * @generated
33: * @since 1.2
34: */
35: public interface VSpan extends VAttachment {
36:         /**
37:          * Returns the value of the '<em><b>Horizontal Span</b></em>' attribute.
38:          * <!-- begin-user-doc -->
39:          * <p>
40:          * If the meaning of the '<em>Horizontal Span</em>' attribute isn't clear, there really should be more of a
41:          * description here...
42:          * </p>
43:          * <!-- end-user-doc -->
44:          *
45:          * @return the value of the '<em>Horizontal Span</em>' attribute.
46:          * @see #setHorizontalSpan(int)
47:          * @see org.eclipse.emf.ecp.view.spi.groupedgrid.model.VGroupedGridPackage#getSpan_HorizontalSpan()
48:          * @model required="true"
49:          * @generated
50:          */
51:         int getHorizontalSpan();
52:
53:         /**
54:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.spi.groupedgrid.model.VSpan#getHorizontalSpan
55:          * <em>Horizontal Span</em>}' attribute.
56:          * <!-- begin-user-doc -->
57:          * <!-- end-user-doc -->
58:          *
59:          * @param value the new value of the '<em>Horizontal Span</em>' attribute.
60:          * @see #getHorizontalSpan()
61:          * @generated
62:          */
63:         void setHorizontalSpan(int value);
64:
65: } // VSpan