1 26 27 package org.objectweb.util.cmdline.lib; 28 29 import org.objectweb.util.cmdline.api.CommandLine; 31 import org.objectweb.util.cmdline.api.CommandLineHolder; 32 33 44 45 public class DefaultCommandLineHolder 46 implements CommandLineHolder 47 { 48 54 55 private CommandLine commandLine_; 56 57 63 64 public 65 DefaultCommandLineHolder() 66 { 67 commandLine_ = null; 69 } 70 71 76 public 77 DefaultCommandLineHolder(CommandLine commandLine) 78 { 79 commandLine_ = commandLine; 81 } 82 83 89 95 100 public CommandLine 101 getCommandLine() 102 { 103 return commandLine_; 104 } 105 106 111 public void 112 setCommandLine(CommandLine cl) 113 { 114 commandLine_ = cl; 115 } 116 } 117 | Popular Tags |