Package devplugin

Examples of devplugin.PluginTreeNode.update()


    PluginTreeNode root = getRootNode();
    Program[] progs = root.getPrograms();
    for (Program program : progs) {
      program.mark(this);
    }
    root.update();
    root.addAction(new EmptyQueueAction());
  }

  public void handleTvBrowserStartFinished() {
    Program[] programs = getRootNode().getPrograms();
View Full Code Here


      if (!rootNode.contains(program)) {
        rootNode.addProgram(program);
        program.mark(this);
      }
    }
    rootNode.update();
    return true;
  }

  public boolean canReceiveProgramsWithTarget() {
    return true;
View Full Code Here

    }

    public void actionPerformed(ActionEvent e) {
      PluginTreeNode root = PrintPlugin.getInstance().getRootNode();
      root.removeAllChildren();
      root.update();
    }
  }
View Full Code Here

          index = rankNode.length - 1;
        }
        addPluginTreeNode(rankNode[index], movie, program);
      }
    }
    root.update();
  }

  private synchronized void addPluginTreeNode(PluginTreeNode parent, Movie movie, Program program) {
    // don't use parent.addProgram(program)
    // otherwise all programs get marked automatically
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.