Ejemplo n.º 1
0
 public void graphAttributeChanged(
     String graphId, long timeId, String attribute, Object oldValue, Object newValue) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.graphAttributeChanged(graphId, timeId, attribute, oldValue, newValue);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }