Changeset 10471
- Timestamp:
- 10/25/10 15:01:24 (3 years ago)
- Location:
- ossiedev/trunk/tools/OEF/src/edu/vt/ossie/actionSets
- Files:
-
- 3 modified
-
ALF.java (modified) (2 diffs)
-
NodeBooter.java (modified) (3 diffs)
-
WaveDash.java (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/tools/OEF/src/edu/vt/ossie/actionSets/ALF.java
r10403 r10471 6 6 import org.eclipse.ui.IWorkbenchWindowActionDelegate; 7 7 import edu.vt.ossie.OWDPlugin; 8 import static edu.vt.ossie.NodeBooterUtils.namingServiceIsRunning; 8 9 import static edu.vt.ossie.NodeBooterUtils.nodeBooterIsRunning; 10 import static edu.vt.ossie.NodeBooterUtils.startNamingService; 9 11 import static edu.vt.ossie.NodeBooterUtils.startNodeBooterWithDefaults; 10 12 /** … … 35 37 public void run(IAction action) 36 38 { 39 40 //start the naming service if necessary 41 if(!namingServiceIsRunning()) 42 startNamingService(); 43 37 44 //check to see if nodebooter is running 38 45 //if not, start it up with the domain and device managers from -
ossiedev/trunk/tools/OEF/src/edu/vt/ossie/actionSets/NodeBooter.java
r7887 r10471 6 6 import org.eclipse.ui.IWorkbenchWindowActionDelegate; 7 7 import edu.vt.ossie.dialogs.NodeBooterDialog; 8 import static edu.vt.ossie.NodeBooterUtils.namingServiceIsRunning; 9 import static edu.vt.ossie.NodeBooterUtils.startNamingService; 8 10 9 11 /** … … 11 13 * 12 14 * 13 * @author $Author : Snyder.Jason$15 * @author $Author$ 14 16 * @version $Id 15 17 */ … … 36 38 try 37 39 { 40 //start the naming service if necessary 41 if(!namingServiceIsRunning()) 42 startNamingService(); 43 38 44 NodeBooterDialog dialog = new NodeBooterDialog(window.getShell()); 39 45 dialog.open(); -
ossiedev/trunk/tools/OEF/src/edu/vt/ossie/actionSets/WaveDash.java
r10403 r10471 3 3 import static edu.vt.ossie.NodeBooterUtils.nodeBooterIsRunning; 4 4 import static edu.vt.ossie.NodeBooterUtils.startNodeBooterWithDefaults; 5 import static edu.vt.ossie.NodeBooterUtils.namingServiceIsRunning; 6 import static edu.vt.ossie.NodeBooterUtils.startNamingService; 5 7 8 import org.apache.log4j.Logger; 6 9 import org.eclipse.jface.action.IAction; 7 10 import org.eclipse.jface.viewers.ISelection; … … 37 40 { 38 41 42 if(!namingServiceIsRunning()) 43 startNamingService(); 44 39 45 //check to see if nodebooter is running 40 46 //if not, start it up with the domain and device managers from … … 42 48 if(!nodeBooterIsRunning()) 43 49 { 50 log.debug("starting nodebooter"); 44 51 startNodeBooterWithDefaults(); 45 52 } … … 57 64 // Nothing to do 58 65 } 66 67 private static final Logger log = 68 OWDPlugin.getLogManager().getLogger(WaveDash.class); 59 69 60 70 }