org.plasma.sdo.Alias Maven / Gradle / Ivy
//==============================================================================
//
// This software artifact was generated using Plasma
// provisioning tools. Do not modify.
//
//==============================================================================
package org.plasma.sdo;
import fUML.Syntax.Classes.Kernel.*;
/**
*
* This stereotype provides modeling-context specific alternative names for UML named elements within a model. While a UML logical model often differs greatly from a physical model for example, the intent is to provide enough naming and other context specific information to make the physical model entirely reflective or derivitive of the UML logical model. In other words support the generation of multiple context-specific models from a single UML logical model. modeling context specific names or aliases are particularly important as they often differ greatly between modeling contexts due to various standard naming conventions or technology limitations such as name length.
*
* @author Plasma-Team
* @version 2.0.1
*/
public interface Alias{
public NamedElement getBase_NamedElement();
public void setBase_NamedElement(NamedElement value);
public String getPhysicalName();
public void setPhysicalName(String value);
public String getLocalName();
public void setLocalName(String value);
public String getBusinessName();
public void setBusinessName(String value);
}