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.common.util.EList;
13:
14: /**
15: * <!-- begin-user-doc -->
16: * A representation of the model object '<em><b>Defence</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.Defence#getPosition <em>Position</em>}</li>
23: * <li>{@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.Defence#getPlayerStats <em>Player Stats</em>}</li>
24: * </ul>
25: * </p>
26: *
27: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getDefence()
28: * @model
29: * @generated
30: */
31: public interface Defence extends Player {
32: /**
33: * Returns the value of the '<em><b>Position</b></em>' attribute.
34: * The literals are from the enumeration {@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.DefencePositionKind}.
35: * <!-- begin-user-doc -->
36: * <p>
37: * If the meaning of the '<em>Position</em>' attribute isn't clear,
38: * there really should be more of a description here...
39: * </p>
40: * <!-- end-user-doc -->
41: * @return the value of the '<em>Position</em>' attribute.
42: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.DefencePositionKind
43: * @see #setPosition(DefencePositionKind)
44: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getDefence_Position()
45: * @model
46: * @generated
47: */
48: DefencePositionKind getPosition();
49:
50: /**
51: * Sets the value of the '{@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.Defence#getPosition <em>Position</em>}' attribute.
52: * <!-- begin-user-doc -->
53: * <!-- end-user-doc -->
54: * @param value the new value of the '<em>Position</em>' attribute.
55: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.DefencePositionKind
56: * @see #getPosition()
57: * @generated
58: */
59: void setPosition(DefencePositionKind value);
60:
61: /**
62: * Returns the value of the '<em><b>Player Stats</b></em>' containment reference list.
63: * The list contents are of type {@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.PlayerStats}.
64: * <!-- begin-user-doc -->
65: * <p>
66: * If the meaning of the '<em>Player Stats</em>' containment reference list isn't clear,
67: * there really should be more of a description here...
68: * </p>
69: * <!-- end-user-doc -->
70: * @return the value of the '<em>Player Stats</em>' containment reference list.
71: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getDefence_PlayerStats()
72: * @model type="org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.PlayerStats" containment="true"
73: * @generated
74: */
75: EList getPlayerStats();
76:
77: } // Defence
|