All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.andromda.metafacades.emf.uml22.DependencyFacadeLogicImpl Maven / Gradle / Ivy

Go to download

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.List;
import org.apache.commons.lang.StringUtils;
import org.apache.log4j.Logger;
import org.eclipse.uml2.uml.DirectedRelationship;
import org.eclipse.uml2.uml.Element;

/**
 * MetafacadeLogic implementation for
 * org.andromda.metafacades.uml.DependencyFacade.
 *
 * @see org.andromda.metafacades.uml.DependencyFacade
 */
public class DependencyFacadeLogicImpl
    extends DependencyFacadeLogic
{
    private static final long serialVersionUID = 34L;
    /**
     * @param metaObject
     * @param context
     */
    public DependencyFacadeLogicImpl(
        final DirectedRelationship metaObject,
        final String context)
    {
        super(metaObject, context);
    }

    /**
     * The logger instance.
     */
    private static final Logger LOGGER = Logger.getLogger(DependencyFacadeLogicImpl.class);

    /**
     * Gets the name in the following manner.
     * 
    *
  1. If the dependency has a name return it.
  2. *
  3. If the dependency does NOT have a name, get the * target element's and return its name uncapitalized.
  4. *
* * @see org.andromda.metafacades.uml.ModelElementFacade#getName() */ @Override public String handleGetName() { String name = super.handleGetName(); if (StringUtils.isBlank(name) && this.getTargetElement() != null) { name = StringUtils.uncapitalize(this.getTargetElement().getName()); } return name; } /** * @see org.andromda.metafacades.uml.DependencyFacade#getGetterName() */ @Override protected String handleGetGetterName() { return "get" + StringUtils.capitalize(this.handleGetName()); } /** * @see org.andromda.metafacades.uml.DependencyFacade#getSetterName() */ @Override protected String handleGetSetterName() { return "set" + StringUtils.capitalize(this.handleGetName()); } /** * @see org.andromda.metafacades.uml.DependencyFacade#getTargetElement() */ @Override protected Object handleGetTargetElement() { Object transform = null; final List elist = this.metaObject.getTargets(); if (elist == null || elist.isEmpty()) { DependencyFacadeLogicImpl.LOGGER.error("DependencyFacade has no targets: " + this.metaObject.getSources().toString()); } else { transform = UmlUtilities.ELEMENT_TRANSFORMER.transform(this.metaObject.getTargets().toArray()[0]); } return transform; } /** * @see org.andromda.metafacades.uml.DependencyFacade#getSourceElement() */ @Override protected Object handleGetSourceElement() { return UmlUtilities.ELEMENT_TRANSFORMER.transform(this.metaObject.getSources().toArray()[0]); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy