fb142ba66eaab5e0c0f1bbbfec6986f38dae260f
[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 import org.apache.wicket.markup.html.resources.JavascriptResourceReference;
22
23 /**
24  * JQuery bahavior which adds the jquery javascript.
25  * 
26  * @author Erik Brakkee
27  */
28 public class JQueryBehavior extends HeaderContributor {
29
30     static final String JQUERY_DEPLOYMENT = "jquery-1.4.2.min.js";
31     static final String JQUERY_DEVELOPMENT = "jquery-1.4.2.js";
32
33     /**
34      * Constructs the behavior.
35      */
36     public JQueryBehavior() {
37         super(initializeInstance());
38     }
39     
40     private static HeaderContributor initializeInstance() {
41         return JavascriptPackageResource.getHeaderContribution(
42             JQueryBehavior.class, getJQueryJavascript());
43     }
44
45     private static String getJQueryJavascript() {
46         return Application.get().getConfigurationType().equals(
47             Application.DEVELOPMENT) ? JQUERY_DEVELOPMENT : JQUERY_DEPLOYMENT;
48     }
49 }