Esempio n. 1
0
 public void stepBegins(String graphId, long timeId, double step) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.stepBegins(graphId, timeId, step);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }
Esempio n. 2
0
 public void edgeAttributeRemoved(String graphId, long timeId, String edgeId, String attribute) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.edgeAttributeRemoved(graphId, timeId, edgeId, attribute);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }
Esempio n. 3
0
 public void nodeRemoved(String graphId, long timeId, String nodeId) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.nodeRemoved(graphId, timeId, nodeId);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }
Esempio n. 4
0
 public void graphCleared(String graphId, long timeId) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.graphCleared(graphId, timeId);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }
Esempio n. 5
0
 public void graphAttributeAdded(String graphId, long timeId, String attribute, Object value) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.graphAttributeAdded(graphId, timeId, attribute, value);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }
Esempio n. 6
0
 public void edgeAttributeChanged(
     String graphId,
     long timeId,
     String edgeId,
     String attribute,
     Object oldValue,
     Object newValue) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.edgeAttributeChanged(graphId, timeId, edgeId, attribute, oldValue, newValue);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }
Esempio n. 7
0
 public void edgeAdded(
     String graphId,
     long timeId,
     String edgeId,
     String fromNodeId,
     String toNodeId,
     boolean directed) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.edgeAdded(graphId, timeId, edgeId, fromNodeId, toNodeId, directed);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }