01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: DCPType.java 7522 2007-09-12 22:00:10Z saul.farber $
06: */package net.opengis.ows;
07:
08: import org.eclipse.emf.ecore.EObject;
09:
10: /**
11: * <!-- begin-user-doc -->
12: * A representation of the model object '<em><b>DCP Type</b></em>'.
13: * <!-- end-user-doc -->
14: *
15: * <p>
16: * The following features are supported:
17: * <ul>
18: * <li>{@link net.opengis.ows.DCPType#getHTTP <em>HTTP</em>}</li>
19: * </ul>
20: * </p>
21: *
22: * @see net.opengis.ows.OwsPackage#getDCPType()
23: * @model extendedMetaData="name='DCP_._type' kind='elementOnly'"
24: * @generated
25: */
26: public interface DCPType extends EObject {
27: /**
28: * Returns the value of the '<em><b>HTTP</b></em>' containment reference.
29: * <!-- begin-user-doc -->
30: * <p>
31: * If the meaning of the '<em>HTTP</em>' containment reference isn't clear,
32: * there really should be more of a description here...
33: * </p>
34: * <!-- end-user-doc -->
35: * @return the value of the '<em>HTTP</em>' containment reference.
36: * @see #setHTTP(HTTPType)
37: * @see net.opengis.ows.OwsPackage#getDCPType_HTTP()
38: * @model containment="true"
39: * extendedMetaData="kind='element' name='HTTP' namespace='##targetNamespace'"
40: * @generated
41: */
42: HTTPType getHTTP();
43:
44: /**
45: * Sets the value of the '{@link net.opengis.ows.DCPType#getHTTP <em>HTTP</em>}' containment reference.
46: * <!-- begin-user-doc -->
47: * <!-- end-user-doc -->
48: * @param value the new value of the '<em>HTTP</em>' containment reference.
49: * @see #getHTTP()
50: * @generated
51: */
52: void setHTTP(HTTPType value);
53:
54: } // DCPType
|