org.andromda.metafacades.uml14.EnumerationLiteralFacadeLogicImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromda-metafacades-uml14 Show documentation
Show all versions of andromda-metafacades-uml14 Show documentation
The UML 1.4 metafacades. This is the set of UML 1.4 metafacades
implementations. These implement the common UML metafacades.
The newest version!
package org.andromda.metafacades.uml14;
import org.andromda.metafacades.uml.NameMasker;
import org.andromda.metafacades.uml.UMLMetafacadeProperties;
import org.apache.commons.lang.StringUtils;
import org.omg.uml.foundation.core.EnumerationLiteral;
/**
* MetafacadeLogic implementation for org.andromda.metafacades.uml.EnumerationLiteralFacade.
*
* @see org.andromda.metafacades.uml.EnumerationLiteralFacade
* @author Bob Fields
*/
public class EnumerationLiteralFacadeLogicImpl
extends EnumerationLiteralFacadeLogic
{
private static final long serialVersionUID = 8552041173866794442L;
/**
* @param metaObject
* @param context
*/
public EnumerationLiteralFacadeLogicImpl(
EnumerationLiteral metaObject,
String context)
{
super(metaObject, context);
}
/**
* @see org.andromda.metafacades.uml.EnumerationLiteralFacade#getName()
*/
@Override
protected String handleGetName()
{
return this.getName(false);
}
/**
* @see org.andromda.metafacades.uml.EnumerationLiteralFacade#getValue()
*/
@Override
protected String handleGetValue()
{
return this.getValue(false);
}
/**
* @see org.andromda.metafacades.uml.EnumerationLiteralFacade#getName(boolean)
*/
@Override
protected String handleGetName(boolean modelName)
{
String name = super.handleGetName();
final String mask = String.valueOf(this.getConfiguredProperty(UMLMetafacadeProperties.ENUMERATION_LITERAL_NAME_MASK));
if (!modelName && StringUtils.isNotBlank(mask))
{
name = NameMasker.mask(name, mask);
}
return name;
}
/**
* @see org.andromda.metafacades.uml.EnumerationLiteralFacade#getValue(boolean)
*/
@Override
protected String handleGetValue(boolean modelValue)
{
return StringUtils.trimToEmpty(this.getName(modelValue));
}
/**
* @see org.andromda.metafacades.uml14.EnumerationLiteralFacadeLogic#handleGetEnumerationValue()
*/
protected String handleGetEnumerationValue() {
String value = this.getValue();
if (StringUtils.isEmpty(value))
{
value = "\"\"";
}
if (value.indexOf('"')<0)
{
value = '\"' + value + '\"';
}
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy