0efab6fabdfde8a926776877acf8b20887e071f1
[utils] / wicket / components / src / main / java / org / wamblee / wicket / jquery / JQueryBehavior.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.wicket.jquery;
17
18 import org.apache.wicket.Application;
19 import org.apache.wicket.behavior.HeaderContributor;
20 import org.apache.wicket.markup.html.JavascriptPackageResource;
21
22 /**
23  * JQuery bahavior which adds the jquery javascript.
24  * 
25  * @author Erik Brakkee
26  */
27 public class JQueryBehavior extends HeaderContributor {
28
29     static final String JQUERY_DEPLOYMENT = "jquery-1.4.2.min.js";
30     static final String JQUERY_DEVELOPMENT = "jquery-1.4.2.js";
31
32     private static HeaderContributor CACHE;
33
34     /**
35      * Constructs the behavior.
36      */
37     public JQueryBehavior() {
38         super(getContributor());
39     }
40     
41     /**
42      * Resets the cached value of the header contribution. Used typically for test only.
43      */
44     public static void clear() { 
45         CACHE = null; 
46     }
47
48     private static HeaderContributor getContributor() {
49         if (CACHE == null) {
50             CACHE = JavascriptPackageResource.getHeaderContribution(
51                 JQueryBehavior.class, getJQueryJavascript());
52         }
53         return CACHE;
54     }
55
56     private static String getJQueryJavascript() {
57         return Application.get().getConfigurationType().equals(
58             Application.DEVELOPMENT) ? JQUERY_DEVELOPMENT : JQUERY_DEPLOYMENT;
59     }
60 }