Package org.eclipse.sapphire.samples.uml

Examples of org.eclipse.sapphire.samples.uml.Entity


public final class EntityKindDoubleTapActionHandler extends SapphireActionHandler
{
  @Override
  protected Object run( final Presentation context )
  {
    Entity entity = (Entity)getPart().getLocalModelElement();
    if (entity.getKind().content() == Entity.Kind.CLASS)
    {
      entity.setKind(Entity.Kind.INTERFACE);
    }
    else
    {
      entity.setKind(Entity.Kind.CLASS);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.samples.uml.Entity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.