Example #1
0
 public void nodeAttributeRemoved(String graphId, long timeId, String nodeId, String attribute) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.nodeAttributeRemoved(graphId, timeId, nodeId, attribute);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }