1 /***
2 * DPT_CONST.java
3 *
4 * Project: Dependency Tool
5 *
6 * WHEN WHO WHAT
7 * 06.06.2003 pko initial public release
8 * 04.10.2002 pko creation
9 *
10 * Copyright 2003 ELCA Informatique SA
11 * Av. de la Harpe 22-24, 1000 Lausanne 13, Switzerland
12 * www.elca.ch
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public License
16 * as published by the Free Software Foundation; either version 2.1 of
17 * the License, or (at your option) any later version.
18 *
19 * This library is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
27 * USA
28 */
29
30 package ch.elca.dependency;
31
32 /***
33 * Class <code>DPT_CONST</code> contains all constants used within the
34 * Dependency Tool.
35 *
36 * @author Pawel Kowalski
37 * @version 1.0-beta
38 */
39 public class DPT_CONST {
40
41 public static final String ROOT = "root";
42 public static final String REPORT = "report";
43 public static final String FILTER = "filter";
44 public static final String BASIC_FILTER = "java.*";
45 public static final String PERSPECTIVE = "perspective";
46 public static final String PROXY = "proxy";
47 public static final String NOWIN = "nowindows";
48 public static final String HELP = "help";
49 public static final String NOARG = "noarg";
50 public static final String EMPTY_STRING = "";
51 public static final String SECTION = "";
52 public static final String CMDLINE_SEPARATOR = "-";
53 public static final String MAIN_CLASS_FQ_NAME = "ch.elca.dependency.DPTool";
54 public static final String CLASS_EXT = ".class";
55 public static final String JAR_EXT = ".jar";
56
57 }
This page was automatically generated by Maven