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>Goalie</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.Goalie#getGoalieStats <em>Goalie Stats</em>}</li>
23: * </ul>
24: * </p>
25: *
26: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getGoalie()
27: * @model
28: * @generated
29: */
30: public interface Goalie extends Player {
31: /**
32: * Returns the value of the '<em><b>Goalie Stats</b></em>' containment reference list.
33: * The list contents are of type {@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.GoalieStats}.
34: * <!-- begin-user-doc -->
35: * <p>
36: * If the meaning of the '<em>Goalie Stats</em>' containment reference list isn't clear,
37: * there really should be more of a description here...
38: * </p>
39: * <!-- end-user-doc -->
40: * @return the value of the '<em>Goalie Stats</em>' containment reference list.
41: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getGoalie_GoalieStats()
42: * @model type="org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.GoalieStats" containment="true"
43: * @generated
44: */
45: EList getGoalieStats();
46:
47: } // Goalie
|