View Javadoc

1   package gov.nasa.pds.ltdt.commandLine;
2   
3   import gov.nasa.pds.tools.flags.ToolsFlags;
4   
5   /***
6    * Command-line flag options available to LTDTool.
7    *  
8    * @author mcayanan
9    *
10   */
11  public interface LTDTFlags extends ToolsFlags {
12  	public final static String PROJDIR[] = {"p", "project", "dir"};
13  	
14  	public final static String WHATIS_PROJDIR = "Specify the project directory of a"
15  			+ " design session to be resumed.";
16  	
17  	//Inheriting the dictionary flag from the ToolsFlags class, but overwriting
18  	//the description
19  	public final static String WHATIS_DICT = "Specify the PDS compliant data" 
20  		    + " dictionary(s) to be imported for use during the design"
21  		    + " session.";
22  }