/** * * 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.util.metadata.impl; import commonj.sdo.Type; import org.apache.tuscany.sdo.impl.DataObjectBase; import org.apache.tuscany.sdo.util.metadata.MetadataFactory; import org.apache.tuscany.sdo.util.metadata.TypeMetaData; /** * * An implementation of the model object 'Type Meta Data'. * *

* The following features are implemented: *

*

* * @generated */ public class TypeMetaDataImpl extends DataObjectBase implements TypeMetaData { /** * The feature id for the 'Location' attribute. * * * @generated * @ordered */ public final static int LOCATION = 0; /** * This represents the number of properties for this type. * * * @generated * @ordered */ public final static int SDO_PROPERTY_COUNT = 1; /** * The default value of the '{@link #getLocation() Location}' attribute. * * * @see #getLocation() * @generated * @ordered */ protected static final String LOCATION_DEFAULT_ = null; /** * The cached value of the '{@link #getLocation() Location}' attribute. * * * @see #getLocation() * @generated * @ordered */ protected String location = LOCATION_DEFAULT_; /** * * * @generated */ protected TypeMetaDataImpl() { super(); } /** * * * @generated */ public Type getStaticType() { return ((MetadataFactoryImpl)MetadataFactory.INSTANCE).getTypeMetaData(); } /** * * * @generated */ public String getLocation() { return location; } /** * * * @generated */ public void setLocation(String newLocation) { String oldLocation = location; location = newLocation; if (isNotifying()) notify(ChangeKind.SET, LOCATION, oldLocation, location); } /** * * * @generated */ public Object get(int propertyIndex, boolean resolve) { switch (propertyIndex) { case LOCATION: return getLocation(); } return super.get(propertyIndex, resolve); } /** * * * @generated */ public void set(int propertyIndex, Object newValue) { switch (propertyIndex) { case LOCATION: setLocation((String)newValue); return; } super.set(propertyIndex, newValue); } /** * * * @generated */ public void unset(int propertyIndex) { switch (propertyIndex) { case LOCATION: setLocation(LOCATION_DEFAULT_); return; } super.unset(propertyIndex); } /** * * * @generated */ public boolean isSet(int propertyIndex) { switch (propertyIndex) { case LOCATION: return LOCATION_DEFAULT_ == null ? location != null : !LOCATION_DEFAULT_.equals(location); } return super.isSet(propertyIndex); } /** * * * @generated */ public String toString() { if (isProxy(this)) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (location: "); result.append(location); result.append(')'); return result.toString(); } } //TypeMetaDataImpl