Examples of IRootComponent


Examples of info.unipax.bina.visualization.model.IRootComponent

      }
    });   
   
    controller.updateAll(t)
   
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();       
    if (activeRoot.getBackgroundModel() != null)
    {
      t.addTask(new Task("calculate metalayer")
      {
        public void run()
        {         
View Full Code Here

Examples of info.unipax.bina.visualization.model.IRootComponent

  /**
   * Expand or shrink the pathway
   * */ 
  public void ExpandShrinkPathway()
  {   
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();       
    if (activeRoot.getBackgroundModel() != null)
    {
      JOptionPane.showMessageDialog(mainWindow.getRootPane(), "This function can be used only without metalayer. Please first delete the metalayer");
    }
    else
    {     
View Full Code Here

Examples of info.unipax.bina.visualization.model.IRootComponent

  /**
   * Delete/Add drawing
   * */
  public void makeDrawingLayouted()
  {
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();   
     
    if (activeRoot.getBackgroundModel() == null)
    {       
      BasicRootComponentUI brc = (BasicRootComponentUI) activeRoot.getUI();
           
      if (brc.getLayouter().getName().equalsIgnoreCase("Hierarchic Layouter"))
      {
        cleanMap();
        controller.updateAll()
View Full Code Here

Examples of info.unipax.bina.visualization.model.IRootComponent

  /**
   * Refresh drawing
   * */
  public void refreshDrawing()
  {
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();   
   
    if (activeRoot.getBackgroundModel() != null)
    { 
      final SequencedTask t = Tasks.createSequencedTask("Metalayer");
   
      t.addTask(new Task("wait")
      {
View Full Code Here

Examples of info.unipax.bina.visualization.model.IRootComponent

  /**
   * Delete the background drawing.
   * */ 
  private void deleteBackground()
  {
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();
   
    activeRoot.setBackgroundModel(null);
    colorGroupList();
    controller.updateAll();   
  }
View Full Code Here

Examples of info.unipax.bina.visualization.model.IRootComponent

      }
    });   
   
    controller.updateAll(t)
   
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();       
    if (activeRoot.getBackgroundModel() != null)
    {
      t.addTask(new Task("calculate metalayer")
      {
        public void run()
        {         
View Full Code Here

Examples of info.unipax.bina.visualization.model.IRootComponent

    }       
    else
    {
      pathNames.clear();
    }
    IRootComponent activeRoot = controller.getMappingModel().getRootComponent();       
   
    UDISBackgroundModel model = new UDISBackgroundModel(listOfPolygons, pathNames, controller);
 
    activeRoot.setBackgroundModel(model);
    controller.updateAll();     
 
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.