01: package org.objectweb.celtix.bus.busimpl;
02:
03: import org.objectweb.celtix.configuration.AbstractCommandLineConfiguration;
04: import org.objectweb.celtix.configuration.CommandLineOption;
05:
06: public class BusArguments extends AbstractCommandLineConfiguration {
07:
08: private static final CommandLineOption BUS_ID_OPT;
09:
10: static {
11: BUS_ID_OPT = new CommandLineOption("-BUSid");
12: }
13:
14: BusArguments(String[] args) {
15: addOption(BUS_ID_OPT);
16: parseCommandLine(args, false);
17: }
18:
19: String getBusId() {
20: return null;
21: }
22:
23: }
|