コード例 #1
0
ファイル: Job.java プロジェクト: mwsobol/iGrid
 public Object putJobValue(String path, Object value) throws ContextException {
   String[] attributes = SorcerUtil.pathToArray(path);
   // remove the leading attribute of the current exertion
   if (attributes[0].equals(getName())) {
     String[] attributes1 = new String[attributes.length - 1];
     System.arraycopy(attributes, 1, attributes1, 0, attributes.length - 1);
     attributes = attributes1;
   }
   String last = attributes[0];
   Exertion exti = this;
   for (String attribute : attributes) {
     if (((ServiceExertion) exti).hasChild(attribute)) {
       exti = ((Job) exti).getChild(attribute);
       if (exti instanceof Task) {
         last = attribute;
         break;
       }
     } else {
       break;
     }
   }
   int index = path.indexOf(last);
   String contextPath = path.substring(index + last.length() + 1);
   exti.getContext().putValue(contextPath, value);
   return value;
 }
コード例 #2
0
ファイル: Job.java プロジェクト: mwsobol/iGrid
 public Context getComponentContext(String path) throws ContextException {
   Exertion xrt = getComponentExertion(path);
   return xrt.getContext();
 }