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>League</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.League#getHeadoffice <em>Headoffice</em>}</li>
23: * <li>{@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.League#getTeams <em>Teams</em>}</li>
24: * </ul>
25: * </p>
26: *
27: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getLeague()
28: * @model
29: * @generated
30: */
31: public interface League extends HockeyleagueObject {
32: /**
33: * Returns the value of the '<em><b>Headoffice</b></em>' attribute.
34: * <!-- begin-user-doc -->
35: * <p>
36: * If the meaning of the '<em>Headoffice</em>' attribute 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>Headoffice</em>' attribute.
41: * @see #setHeadoffice(String)
42: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getLeague_Headoffice()
43: * @model
44: * @generated
45: */
46: String getHeadoffice();
47:
48: /**
49: * Sets the value of the '{@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.League#getHeadoffice <em>Headoffice</em>}' attribute.
50: * <!-- begin-user-doc -->
51: * <!-- end-user-doc -->
52: * @param value the new value of the '<em>Headoffice</em>' attribute.
53: * @see #getHeadoffice()
54: * @generated
55: */
56: void setHeadoffice(String value);
57:
58: /**
59: * Returns the value of the '<em><b>Teams</b></em>' containment reference list.
60: * The list contents are of type {@link org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.Team}.
61: * <!-- begin-user-doc -->
62: * <p>
63: * If the meaning of the '<em>Teams</em>' containment reference list isn't clear,
64: * there really should be more of a description here...
65: * </p>
66: * <!-- end-user-doc -->
67: * @return the value of the '<em>Teams</em>' containment reference list.
68: * @see org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.HockeyleaguePackage#getLeague_Teams()
69: * @model type="org.eclipse.ui.examples.views.properties.tabbed.hockeyleague.Team" containment="true"
70: * @generated
71: */
72: EList getTeams();
73:
74: } // League
|