01: /*******************************************************************************
02: * Copyright (c) 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.examples.views.properties.tabbed.hockeyleague;
11:
12: import org.eclipse.emf.ecore.EObject;
13:
14: /**
15: * <!-- begin-user-doc -->
16: * A representation of the model object '<em><b>Object</b></em>'.
17: * <!-- end-user-doc -->
18: *
19: * <p>
20: * The following features are supported:
21: * <ul>
22: * <li>{@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleagueObject#getName <em>Name</em>}</li>
23: * </ul>
24: * </p>
25: *
26: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getHockeyleagueObject()
27: * @model abstract="true"
28: * @generated
29: */
30: public interface HockeyleagueObject extends EObject {
31: /**
32: * Returns the value of the '<em><b>Name</b></em>' attribute.
33: * <!-- begin-user-doc -->
34: * <p>
35: * If the meaning of the '<em>Name</em>' attribute isn't clear,
36: * there really should be more of a description here...
37: * </p>
38: * <!-- end-user-doc -->
39: * @return the value of the '<em>Name</em>' attribute.
40: * @see #setName(String)
41: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getHockeyleagueObject_Name()
42: * @model
43: * @generated
44: */
45: String getName();
46:
47: /**
48: * Sets the value of the '{@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleagueObject#getName <em>Name</em>}' attribute.
49: * <!-- begin-user-doc -->
50: * <!-- end-user-doc -->
51: * @param value the new value of the '<em>Name</em>' attribute.
52: * @see #getName()
53: * @generated
54: */
55: void setName(String value);
56:
57: } // HockeyleagueObject
|