📄 requestmethodtypeimpl.java
字号:
/**
* <copyright>
* </copyright>
*
* $Id: RequestMethodTypeImpl.java 7522 2007-09-12 22:00:10Z saul.farber $
*/
package net.opengis.ows.impl;
import java.util.Collection;
import net.opengis.ows.DomainType;
import net.opengis.ows.OwsPackage;
import net.opengis.ows.RequestMethodType;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Request Method Type</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link net.opengis.ows.impl.RequestMethodTypeImpl#getConstraint <em>Constraint</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class RequestMethodTypeImpl extends OnlineResourceTypeImpl implements RequestMethodType {
/**
* The cached value of the '{@link #getConstraint() <em>Constraint</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getConstraint()
* @generated
* @ordered
*/
protected EList constraint;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected RequestMethodTypeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return OwsPackage.Literals.REQUEST_METHOD_TYPE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList getConstraint() {
if (constraint == null) {
constraint = new EObjectContainmentEList(DomainType.class, this, OwsPackage.REQUEST_METHOD_TYPE__CONSTRAINT);
}
return constraint;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case OwsPackage.REQUEST_METHOD_TYPE__CONSTRAINT:
return ((InternalEList)getConstraint()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case OwsPackage.REQUEST_METHOD_TYPE__CONSTRAINT:
return getConstraint();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case OwsPackage.REQUEST_METHOD_TYPE__CONSTRAINT:
getConstraint().clear();
getConstraint().addAll((Collection)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(int featureID) {
switch (featureID) {
case OwsPackage.REQUEST_METHOD_TYPE__CONSTRAINT:
getConstraint().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(int featureID) {
switch (featureID) {
case OwsPackage.REQUEST_METHOD_TYPE__CONSTRAINT:
return constraint != null && !constraint.isEmpty();
}
return super.eIsSet(featureID);
}
} //RequestMethodTypeImpl
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -