KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > busimpl > BusArguments


1 package org.objectweb.celtix.bus.busimpl;
2
3 import org.objectweb.celtix.configuration.AbstractCommandLineConfiguration;
4 import org.objectweb.celtix.configuration.CommandLineOption;
5
6 public class BusArguments extends AbstractCommandLineConfiguration {
7     
8     private static final CommandLineOption BUS_ID_OPT;
9     
10     
11     static {
12         BUS_ID_OPT = new CommandLineOption("-BUSid");
13     }
14     
15     BusArguments(String JavaDoc[] args) {
16         addOption(BUS_ID_OPT);
17         parseCommandLine(args, false);
18     }
19     
20     String JavaDoc getBusId() {
21         return null;
22     }
23     
24 }
25
Popular Tags