001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package com.sun.rave.web.ui.theme;
042:
043: /**
044: * <p> This class contains javascript related theme constants.</p>
045: * TODO: Eventually these need to move to a theme-based
046: * resource file.
047: */
048:
049: public class ThemeJavascript {
050:
051: /**
052: * A Javascript file that contains functions for manipulating
053: * the AddRemove component.
054: */
055: public static final String ADD_REMOVE = "addRemove";
056: /**
057: * A Javascript file that contains general functions used by
058: * simple components.
059: */
060: public static final String BASIC = "basic";
061: /**
062: * A Javascript file that contains functions for obtaining
063: * the browser version.
064: */
065: public static final String BROWSER_VERSION = "browserVersion";
066: /**
067: * A javascript file that contains functions for manipulating
068: * the Calendar component.
069: */
070: public static final String CALENDAR = "calendar";
071: /**
072: * A Javascript file that contains functions for manipulating
073: * cookies.
074: */
075: public static final String COOKIE = "cookie";
076: /**
077: * A Javascript file that contains functions for manipulating
078: * the EditableList component.
079: */
080: public static final String EDITABLE_LIST = "editableList";
081:
082: /**
083: * A Javascript file that contains functions for manipulating
084: * the FileChooser component.
085: */
086: public static final String FILE_CHOOSER = "fileChooser";
087:
088: /**
089: * A Javascript file that contains functions for maintaining
090: * the focus within the page.
091: */
092: public static final String FOCUS_COOKIE = "focusCookie";
093: /**
094: * A properties file key whose value is a space separated list of
095: * keys identifying javascript files that are included in every page.
096: */
097: public static final String GLOBAL = "global";
098: /**
099: * A Javascript file that contains functions for manipulating
100: * the OrderableList component.
101: */
102: public static final String ORDERABLE_LIST = "orderableList";
103: /**
104: * A Javascript file that contains functions for maintaining
105: * the scroll position within a page.
106: */
107: public static final String SCROLL_COOKIE = "scrollCookie";
108:
109: /**
110: * A javascript file that contains functions for manipulating
111: * the Scheduler component.
112: */
113: public static final String SCHEDULER = "scheduler";
114:
115: /**
116: * A Javascript file that contains functions for manipulating
117: * component styles.
118: */
119: public static final String STYLESHEET = "stylesheet";
120: /**
121: * A Javascript file that contains functions for manipulating
122: * the Table component.
123: */
124: public static final String TABLE = "table";
125: /**
126: * A Javascript file that contains functions for manipulating
127: * the Tree component.
128: */
129: public static final String TREE = "tree";
130: /**
131: * A Javascript file that contains functions for manipulating
132: * the Wizard component.
133: */
134: public static final String WIZARD = "wizard";
135:
136: /* Obsolete ?
137: public static final String DYNAMIC = "dynamic";
138: public static final String POPUP = "popup";
139: public static final String TOPOLOGY = "topology";
140: */
141:
142: /**
143: * This private constructor prevents this class from being instantiated
144: * directly as its only purpose is to provide image constants.
145: */
146: private ThemeJavascript() {
147: // do nothing
148: }
149: }
|