1 31 package org.objectweb.proactive.core.process; 32 33 34 37 public interface ExternalProcessDecorator extends ExternalProcess { 38 39 42 public static final int APPEND_TO_COMMAND_COMPOSITION = 1; 43 44 48 public static final int SEND_TO_OUTPUT_STREAM_COMPOSITION = 2; 49 50 51 55 public static final int GIVE_COMMAND_AS_PARAMETER = 3; 56 57 58 63 public ExternalProcess getTargetProcess(); 64 65 66 71 public void setTargetProcess(ExternalProcess targetProcess); 72 73 74 79 public int getCompositionType(); 80 81 82 87 public void setCompositionType(int compositionType); 88 89 } 90 | Popular Tags |