Examples of IGaService


Examples of org.eclipse.graphiti.services.IGaService

  public static Style getStyleForText(Diagram diagram) {
    Style parentStyle = getStyleForClass(diagram);
    Style s = findStyle(parentStyle, TEXT_ID);
   
    if(s == null) {
      IGaService gaService = Graphiti.getGaService();
      s = gaService.createStyle(diagram, TEXT_ID);
      s.setForeground(gaService.manageColor(diagram, CLASS_TEXT_FOREGROUND));
    }
   
    return s;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.