Skip to content

Package: TableContentWithValidation

TableContentWithValidation

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 With 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.TableContentWithValidation#getName <em>Name</em>}</li>
26: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithValidation#getWeight <em>Weight</em>}</li>
27: * </ul>
28: *
29: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithValidation()
30: * @model
31: * @generated
32: */
33: public interface TableContentWithValidation extends TableContent {
34:         /**
35:          * Returns the value of the '<em><b>Name</b></em>' attribute.
36:          * <!-- begin-user-doc -->
37:          * <p>
38:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
39:          * </p>
40:          * <!-- end-user-doc -->
41:          *
42:          * @return the value of the '<em>Name</em>' attribute.
43:          * @see #setName(String)
44:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithValidation_Name()
45:          * @model required="true"
46:          * @generated
47:          */
48:         String getName();
49:
50:         /**
51:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithValidation#getName
52:          * <em>Name</em>}' attribute.
53:          * <!-- begin-user-doc -->
54:          * <!-- end-user-doc -->
55:          *
56:          * @param value the new value of the '<em>Name</em>' attribute.
57:          * @see #getName()
58:          * @generated
59:          */
60:         void setName(String value);
61:
62:         /**
63:          * Returns the value of the '<em><b>Weight</b></em>' attribute.
64:          * <!-- begin-user-doc -->
65:          * <p>
66:          * If the meaning of the '<em>Weight</em>' attribute isn't clear, there really should be more of a description
67:          * here...
68:          * </p>
69:          * <!-- end-user-doc -->
70:          *
71:          * @return the value of the '<em>Weight</em>' attribute.
72:          * @see #setWeight(int)
73:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getTableContentWithValidation_Weight()
74:          * @model
75:          * @generated
76:          */
77:         int getWeight();
78:
79:         /**
80:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.validation.test.model.TableContentWithValidation#getWeight
81:          * <em>Weight</em>}' attribute.
82:          * <!-- begin-user-doc -->
83:          * <!-- end-user-doc -->
84:          *
85:          * @param value the new value of the '<em>Weight</em>' attribute.
86:          * @see #getWeight()
87:          * @generated
88:          */
89:         void setWeight(int value);
90:
91: } // TableContentWithValidation