📄 outputformatlisttypeimpl.java
字号:
/**
* <copyright>
* </copyright>
*
* $Id: OutputFormatListTypeImpl.java 7522 2007-09-12 22:00:10Z saul.farber $
*/
package net.opengis.wfs.impl;
import net.opengis.wfs.OutputFormatListType;
import net.opengis.wfs.WfsPackage;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.emf.ecore.util.BasicFeatureMap;
import org.eclipse.emf.ecore.util.FeatureMap;
import org.eclipse.emf.ecore.util.InternalEList;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Output Format List Type</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link net.opengis.wfs.impl.OutputFormatListTypeImpl#getGroup <em>Group</em>}</li>
* <li>{@link net.opengis.wfs.impl.OutputFormatListTypeImpl#getFormat <em>Format</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class OutputFormatListTypeImpl extends EObjectImpl implements OutputFormatListType {
/**
* The cached value of the '{@link #getGroup() <em>Group</em>}' attribute list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getGroup()
* @generated
* @ordered
*/
protected FeatureMap group;
/**
* The default value of the '{@link #getFormat() <em>Format</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getFormat()
* @generated
* @ordered
*/
protected static final String FORMAT_EDEFAULT = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected OutputFormatListTypeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass() {
return WfsPackage.Literals.OUTPUT_FORMAT_LIST_TYPE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public FeatureMap getGroup() {
if (group == null) {
group = new BasicFeatureMap(this, WfsPackage.OUTPUT_FORMAT_LIST_TYPE__GROUP);
}
return group;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getFormat() {
return (String)getGroup().get(WfsPackage.Literals.OUTPUT_FORMAT_LIST_TYPE__FORMAT, true);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setFormat(String newFormat) {
((FeatureMap.Internal)getGroup()).set(WfsPackage.Literals.OUTPUT_FORMAT_LIST_TYPE__FORMAT, newFormat);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__GROUP:
return ((InternalEList)getGroup()).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 WfsPackage.OUTPUT_FORMAT_LIST_TYPE__GROUP:
if (coreType) return getGroup();
return ((FeatureMap.Internal)getGroup()).getWrapper();
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__FORMAT:
return getFormat();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__GROUP:
((FeatureMap.Internal)getGroup()).set(newValue);
return;
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__FORMAT:
setFormat((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void eUnset(int featureID) {
switch (featureID) {
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__GROUP:
getGroup().clear();
return;
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__FORMAT:
setFormat(FORMAT_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean eIsSet(int featureID) {
switch (featureID) {
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__GROUP:
return group != null && !group.isEmpty();
case WfsPackage.OUTPUT_FORMAT_LIST_TYPE__FORMAT:
return FORMAT_EDEFAULT == null ? getFormat() != null : !FORMAT_EDEFAULT.equals(getFormat());
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (group: ");
result.append(group);
result.append(')');
return result.toString();
}
} //OutputFormatListTypeImpl
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -