⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 headercontributor.java

📁 Wicket一个开发Java Web应用程序框架。它使得开发web应用程序变得容易而轻松。 Wicket利用一个POJO data beans组件使得它可以与任何持久层技术相结合。
💻 JAVA
字号:
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License.  You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.wicket.behavior;import org.apache.wicket.RequestCycle;import org.apache.wicket.ResourceReference;import org.apache.wicket.markup.html.IHeaderContributor;import org.apache.wicket.markup.html.IHeaderResponse;import org.apache.wicket.markup.html.resources.CompressedResourceReference;import org.apache.wicket.markup.html.resources.JavascriptResourceReference;/** * A {@link org.apache.wicket.behavior.AbstractHeaderContributor} behavior that is specialized on * package resources. If you use this class, you have to pre-register the resources you want to * contribute. A shortcut for common cases is to call {@link #forCss(Class, String)} to contribute a * package css file or {@link #forJavaScript(Class, String)} to contribute a packaged javascript * file. For instance: *  * <pre> * add(HeaderContributor.forCss(MyPanel.class, &quot;mystyle.css&quot;)); * </pre> *  * @author Eelco Hillenius * @author Matej Knopp */public class HeaderContributor extends AbstractHeaderContributor{	private static final long serialVersionUID = 1L;	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor that references	 * a CSS file that lives in a package.	 * 	 * @param scope	 *            The scope of the package resource (typically the class of the caller, or a class	 *            that lives in the package where the resource lives).	 * @param path	 *            The path	 * @return the new header contributor instance	 */	public static final HeaderContributor forCss(final Class scope, final String path)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderCSSReference(new CompressedResourceReference(scope, path));			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor that references	 * a CSS file that lives in a package.	 * 	 * @param scope	 *            The scope of the package resource (typically the class of the caller, or a class	 *            that lives in the package where the resource lives).	 * @param path	 *            The path	 * @param media	 *            The media type for this CSS ("print", "screen", etc.)	 * @return the new header contributor instance	 */	public static final HeaderContributor forCss(final Class scope, final String path,		final String media)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderCSSReference(new CompressedResourceReference(scope, path), media);			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor that references	 * a CSS file that lives in a package.	 * 	 * @param reference	 * 	 * @return the new header contributor instance	 */	public static final HeaderContributor forCss(final ResourceReference reference)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderCSSReference(reference);			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor that references	 * a CSS file that lives in a package.	 * 	 * @param reference	 * @param media	 *            The media type for this CSS ("print", "screen", etc.)	 * @return the new header contributor instance	 */	public static final HeaderContributor forCss(final ResourceReference reference,		final String media)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderCSSReference(reference, media);			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor referencing a	 * CSS file using one of the following schemes:	 * <ul>	 * <li>Starts with http:// or https:// for an external reference.</li>	 * <li>Starts with "/" for an absolute reference that Wicket will not rewrite.</li>	 * <li>Starts with anything else, which Wicket will automatically prepend to make relative to	 * the context root of your web-app.</li>	 * </ul>	 * 	 * @param location	 *            The location of the css file.	 * @return the new header contributor instance	 */	public static final HeaderContributor forCss(final String location)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderCSSReference(returnRelativePath(location));			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor referencing a	 * CSS file using one of the following schemes:	 * <ul>	 * <li>Starts with http:// or https:// for an external reference.</li>	 * <li>Starts with "/" for an absolute reference that Wicket will not rewrite.</li>	 * <li>Starts with anything else, which Wicket will automatically prepend to make relative to	 * the context root of your web-app.</li>	 * </ul>	 * 	 * @param location	 *            The location of the css.	 * @param media	 *            The media type for this CSS ("print", "screen", etc.)	 * @return the new header contributor instance	 */	public static final HeaderContributor forCss(final String location, final String media)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderCSSReference(returnRelativePath(location), media);			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor that references	 * a java script file that lives in a package.	 * 	 * @param scope	 *            The scope of the package resource (typically the class of the caller, or a class	 *            that lives in the package where the resource lives).	 * @param path	 *            The path	 * @return the new header contributor instance	 */	public static final HeaderContributor forJavaScript(final Class scope, final String path)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderJavascriptReference(new JavascriptResourceReference(scope, path));			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor that references	 * a java script file that lives in a package.	 * 	 * @param reference	 * 	 * @return the new header contributor instance	 */	public static final HeaderContributor forJavaScript(final ResourceReference reference)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderJavascriptReference(reference);			}		});	}	/**	 * Returns a new instance of {@link HeaderContributor} with a header contributor referencing a	 * java script file using one of the following schemes:	 * <ul>	 * <li>Starts with http:// or https:// for an external reference.</li>	 * <li>Starts with "/" for an absolute reference that Wicket will not rewrite.</li>	 * <li>Starts with anything else, which Wicket will automatically prepend to make relative to	 * the context root of your web-app.</li>	 * </ul>	 * 	 * @param location	 *            The location of the java script file.	 * @return the new header contributor instance	 */	public static final HeaderContributor forJavaScript(final String location)	{		return new HeaderContributor(new IHeaderContributor()		{			private static final long serialVersionUID = 1L;			public void renderHead(IHeaderResponse response)			{				response.renderJavascriptReference(returnRelativePath(location));			}		});	}	// Adds ../ links to make the location relative to the root of the webapp,	// provided it's not a fully-qualified URL.	private static final String returnRelativePath(String location)	{		// WICKET-59 allow external URLs, WICKET-612 allow absolute URLs.		if (location.startsWith("http://") || location.startsWith("https://") ||			location.startsWith("/"))		{			return location;		}		else		{			return RequestCycle.get().getRequest().getRelativePathPrefixToContextRoot() + location;		}	}	/**	 * Resource reference to contribute.	 */	private IHeaderContributor headerContributor = null;	/**	 * Construct.	 * 	 * @param headerContributor	 *            the header contributor	 */	public HeaderContributor(IHeaderContributor headerContributor)	{		if (headerContributor == null)		{			throw new IllegalArgumentException("header contributor may not be null");		}		this.headerContributor = headerContributor;	}	/**	 * @see org.apache.wicket.behavior.AbstractHeaderContributor#getHeaderContributors()	 */	public final IHeaderContributor[] getHeaderContributors()	{		return new IHeaderContributor[] { headerContributor };	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -