コード例 #1
0
ファイル: RMISink.java プロジェクト: gjherbiet/gs-core
 public void nodeAttributeAdded(
     String graphId, long timeId, String nodeId, String attribute, Object value) {
   for (RMIAdapterIn in : inputs.values()) {
     try {
       in.nodeAttributeAdded(graphId, timeId, nodeId, attribute, value);
     } catch (Exception e) {
       e.printStackTrace();
     }
   }
 }