source: trunk/t3d/src/org/etsi/t3d/config/T3DOptionsHandler.java @ 7

Last change on this file since 7 was 7, checked in by phdmakk, 14 years ago
  • Property svn:mime-type set to text/plain
File size: 805 bytes
Line 
1package org.etsi.t3d.config;
2
3import org.etsi.common.configuration.OptionWithID;
4import org.etsi.common.configuration.OptionsHandler;
5
6
7public class T3DOptionsHandler extends OptionsHandler {
8
9        public T3DOptionsHandler() {
10                super();
11                this.initializeCustomOptions();
12        }
13
14        private void initializeCustomOptions() {
15                //TODO: add arguments ?
16                OptionWithID optionWithID;
17                optionWithID = new OptionWithID(21, "html", "Generate HTML documentation, including intermediate XML files");
18                getOptions().addOption(optionWithID);
19               
20                optionWithID = new OptionWithID(22, "xml-only", "Generate intermediate XML files only");
21                getOptions().addOption(optionWithID);
22
23                optionWithID = new OptionWithID(23, "local-dependencies", "Generate local dependencies XML file\n");
24                getOptions().addOption(optionWithID);
25
26        }
27}
Note: See TracBrowser for help on using the repository browser.