Ejemplo n.º 1
0
 public void updateAllValue() {
   if (pane == null) return;
   bNeedUpdate = false;
   int nums = pane.getComponentCount();
   for (int i = 0; i < nums; i++) {
     Component comp = pane.getComponent(i);
     if (comp instanceof VObjIF) {
       VObjIF obj = (VObjIF) comp;
       obj.updateValue();
     }
   }
 }
Ejemplo n.º 2
0
  public void setViewPort(int id) {
    if (pane == null) return;

    // ButtonIF vif = Util.getViewArea().getActiveVp();
    ButtonIF vif = Util.getViewArea().getExp(id);

    if (vif == null) return;

    int nums = pane.getComponentCount();

    for (int i = 0; i < nums; i++) {
      Component comp = pane.getComponent(i);
      if (comp instanceof VObjIF) {
        VObjIF obj = (VObjIF) comp;
        obj.setVnmrIF(vif);
      }
    }
  }