Skip to content

Package: TableContentWithoutValidation

TableContentWithoutValidation

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.validation.test.model;
15:
16: /**
17: * <!-- begin-user-doc -->
18: * A representation of the model object '<em><b>Table Content Without Validation</b></em>'.
19: * <!-- end-user-doc -->
20: *
21: * <p>
22: * The following features are supported:
23: * </p>
24: * <ul>
25: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithoutValidation#getName <em>Name</em>}</li>
26: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithoutValidation#getWeight <em>Weight</em>}
27: * </li>
28: * </ul>
29: *
30: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithoutValidation()
31: * @model
32: * @generated
33: */
34: public interface TableContentWithoutValidation extends TableContent {
35:         /**
36:          * Returns the value of the '<em><b>Name</b></em>' attribute.
37:          * <!-- begin-user-doc -->
38:          * <p>
39:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
40:          * </p>
41:          * <!-- end-user-doc -->
42:          *
43:          * @return the value of the '<em>Name</em>' attribute.
44:          * @see #setName(String)
45:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithoutValidation_Name()
46:          * @model
47:          * @generated
48:          */
49:         String getName();
50:
51:         /**
52:          * Sets the value of the '
53:          * {@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithoutValidation#getName <em>Name</em>}'
54:          * attribute.
55:          * <!-- begin-user-doc -->
56:          * <!-- end-user-doc -->
57:          *
58:          * @param value the new value of the '<em>Name</em>' attribute.
59:          * @see #getName()
60:          * @generated
61:          */
62:         void setName(String value);
63:
64:         /**
65:          * Returns the value of the '<em><b>Weight</b></em>' attribute.
66:          * <!-- begin-user-doc -->
67:          * <p>
68:          * If the meaning of the '<em>Weight</em>' attribute isn't clear, there really should be more of a description
69:          * here...
70:          * </p>
71:          * <!-- end-user-doc -->
72:          *
73:          * @return the value of the '<em>Weight</em>' attribute.
74:          * @see #setWeight(int)
75:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithoutValidation_Weight()
76:          * @model
77:          * @generated
78:          */
79:         int getWeight();
80:
81:         /**
82:          * Sets the value of the '
83:          * {@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithoutValidation#getWeight <em>Weight</em>}'
84:          * attribute.
85:          * <!-- begin-user-doc -->
86:          * <!-- end-user-doc -->
87:          *
88:          * @param value the new value of the '<em>Weight</em>' attribute.
89:          * @see #getWeight()
90:          * @generated
91:          */
92:         void setWeight(int value);
93:
94: } // TableContentWithoutValidation