org.andromda.metafacades.emf.uml22.AttributeLinkFacadeLogicImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromda-metafacades-emf-uml22 Show documentation
Show all versions of andromda-metafacades-emf-uml22 Show documentation
The Eclipse EMF UML2 v2.X metafacades. This is the set of EMF UML2 2.X metafacades
implementations. These implement the common UML metafacades for .uml model files.
The newest version!
package org.andromda.metafacades.emf.uml22;
import java.util.ArrayList;
import java.util.Collection;
import org.andromda.metafacades.uml.InstanceFacade;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.Transformer;
import org.eclipse.uml2.uml.ValueSpecification;
/**
* MetafacadeLogic implementation for org.andromda.metafacades.uml.AttributeLinkFacade.
*
* @see org.andromda.metafacades.uml.AttributeLinkFacade
*/
public class AttributeLinkFacadeLogicImpl
extends AttributeLinkFacadeLogic
{
private static final long serialVersionUID = 34L;
/**
* @param metaObject
* @param context
* @see org.andromda.metafacades.uml.AttributeLinkFacade
*/
public AttributeLinkFacadeLogicImpl(final AttributeLink metaObject, final String context)
{
super(metaObject, context);
}
/**
* @see org.andromda.metafacades.uml.AttributeLinkFacade#getAttribute()
*/
@Override
protected Object handleGetAttribute()
{
return UmlUtilities.ELEMENT_TRANSFORMER.transform(this.metaObject.getDefiningFeature());
}
/**
* @see org.andromda.metafacades.uml.AttributeLinkFacade#getInstance()
*/
@Override
protected Object handleGetInstance()
{
return UmlUtilities.ELEMENT_TRANSFORMER.transform(this.metaObject.getOwningInstance());
}
/**
* @see org.andromda.metafacades.uml.AttributeLinkFacade#getValue()
*/
@Override
protected InstanceFacade handleGetValue()
{
final Collection values = this.getValues();
return values.isEmpty() ? null : values.iterator().next();
}
/**
* @see org.andromda.metafacades.uml.AttributeLinkFacade#getValues()
*/
@Override
protected Collection handleGetValues()
{
final Collection values = new ArrayList(this.metaObject.getValues());
CollectionUtils.transform(values, new Transformer()
{
public Object transform(final Object object)
{
return InstanceFacadeLogicImpl.createInstanceFor((ValueSpecification)object);
}
});
return values;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy