/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.tuscany.sdo.impl; import org.apache.tuscany.sdo.SDOFactory; import org.apache.tuscany.sdo.SDOPackage; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EStructuralFeature; import org.eclipse.emf.ecore.impl.EFactoryImpl; import commonj.sdo.DataObject; import commonj.sdo.Property; /** * * An implementation of the model object 'Dynamic Data Object'. * @extends EStructuralFeature.Internal.DynamicValueHolder * *

*

* * @generated */ public class DynamicDataObjectImpl extends DataObjectImpl implements DataObject, EStructuralFeature.Internal.DynamicValueHolder { protected EClass eClass; protected Object [] eSettings; protected static final Object [] ENO_SETTINGS = new Object [0]; /** * * * @generated */ protected DynamicDataObjectImpl() { super(); } /** * Creates a dynamic DataObject. */ public DynamicDataObjectImpl(EClass eClass) { super(); eSetClass(eClass); Property csp = ((ClassImpl)eClass).getChangeSummaryProperty(); if (csp != null) { ChangeSummaryImpl changeSummary = (ChangeSummaryImpl)SDOFactory.eINSTANCE.createChangeSummary(); set(csp, changeSummary); changeSummary.setDataObject(this); } } /** * * * @generated */ protected EClass eStaticClass() { return SDOPackage.eINSTANCE.getDynamicDataObject(); } protected int eStaticFeatureCount() { return 0; } public int eDerivedStructuralFeatureID(EStructuralFeature eStructuralFeature) { return eClass().getFeatureID(eStructuralFeature); } protected boolean eHasSettings() { return eSettings != null; } protected EStructuralFeature.Internal.DynamicValueHolder eSettings() { if (eSettings == null) { int size = eClass().getFeatureCount() - eStaticFeatureCount(); eSettings = size == 0 ? ENO_SETTINGS : new Object [size]; } return this; } protected EClass eDynamicClass() { return eClass; } public EClass eClass() { return eClass; } public void eSetClass(EClass eClass) { this.eClass = eClass; } public Object dynamicGet(int dynamicFeatureID) { return eSettings[dynamicFeatureID]; } public void dynamicSet(int dynamicFeatureID, Object value) { eSettings[dynamicFeatureID] = value; } public void dynamicUnset(int dynamicFeatureID) { eSettings[dynamicFeatureID] = null; } public Object eDynamicGet(int featureID, boolean resolve, boolean coreType) { if (featureID < eClass().getFeatureCount()) { EStructuralFeature eFeature = eClass().getEStructuralFeature(featureID); return eSettingDelegate(eFeature).dynamicGet(this, eSettings(), featureID, resolve, coreType); } else { return super.eDynamicGet(featureID, resolve, coreType); } } public void eDynamicSet(int featureID, Object newValue) { if (featureID < eClass().getFeatureCount()) { EStructuralFeature eFeature = eClass().getEStructuralFeature(featureID); try { eDynamicSet(featureID, eFeature, newValue); } catch (IllegalArgumentException e) { throw new UnsupportedOperationException(e.getMessage()); } } else { super.eDynamicSet(featureID, newValue); } } public void eDynamicUnset(int featureID) { if (featureID < eClass().getFeatureCount()) { EStructuralFeature eFeature = eClass().getEStructuralFeature(featureID); try { eDynamicUnset(featureID, eFeature); } catch (IllegalArgumentException e) { throw new UnsupportedOperationException(e.getMessage()); } } else { super.eDynamicUnset(featureID); } } public boolean eDynamicIsSet(int featureID) { if (featureID < eClass().getFeatureCount()) { EStructuralFeature eFeature = eClass().getEStructuralFeature(featureID); return eSettingDelegate(eFeature).dynamicIsSet(this, eSettings(), featureID); } else { return super.eDynamicIsSet(featureID); } } /** * An EFactoryImpl that creates DynamicEDataObjectImpl instances. */ public static class FactoryImpl extends EFactoryImpl { public FactoryImpl() { } public EObject basicCreate(EClass eClass) { return new DynamicDataObjectImpl(eClass); } } } //DynamicDataObjectImpl