KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > web > freeform > WebFreeformProperties


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.web.freeform;
21
22 /**
23  * Contains constants for various properties used in the web project
24  *
25  * @author Andrei Badea
26  */

27 public class WebFreeformProperties {
28
29     /**
30      * JPDA debug session name
31      */

32     public final static String JavaDoc JPDA_SESSION_NAME = "jpda.session.name"; // NOI18N
33

34     /**
35      * JPDA transport type
36      */

37     public final static String JavaDoc JPDA_TRANSPORT = "jpda.transport"; // NOI18N
38

39     /**
40      * JPDA host to connect to
41      */

42     public final static String JavaDoc JPDA_HOST = "jpda.host"; // NOI18N
43

44     public final static String JavaDoc JPDA_ADDRESS = "jpda.address"; // NOI18N
45

46     /**
47      * The full client URL (e.g., http://localhost:8084/AppName)
48      */

49     public final static String JavaDoc CLIENT_URL = "client.url"; // NOI18N
50

51     public final static String JavaDoc SRC_FOLDERS = "src.folders"; // NOI18N
52

53     public final static String JavaDoc WEB_DOCBASE_DIR = "web.docbase.dir"; // NOI18N
54

55     public final static String JavaDoc DEBUG_SOURCEPATH = "debug.sourcepath"; // NOI18N
56

57     private WebFreeformProperties() {
58     }
59     
60 }
61
Popular Tags