Package org.apache.wicket.markup.html

Examples of org.apache.wicket.markup.html.IHeaderContributor


   *
   * @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)
      {
View Full Code Here


   * @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)
      {
View Full Code Here

   *            The location of the css file relative to the context path
   * @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)
      {
View Full Code Here

   *            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)
      {
View Full Code Here

   *            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)
      {
View Full Code Here

   *
   * @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)
      {
View Full Code Here

   *            The location of the css file relative to the context path
   * @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)
      {
View Full Code Here

  {
    if (renderHeadListeners != null)
    {
      for (Iterator<IHeaderContributor> iter = renderHeadListeners.iterator(); iter.hasNext();)
      {
        IHeaderContributor listener = iter.next();
        listener.renderHead(response);
      }
    }
  }
View Full Code Here

  {
    if (renderHeadListeners != null)
    {
      for (Iterator i = renderHeadListeners.iterator(); i.hasNext();)
      {
        IHeaderContributor listener = (IHeaderContributor) i.next();
        listener.renderHead(response);
      }
    }
  }
View Full Code Here

   *            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)
      {
View Full Code Here

TOP

Related Classes of org.apache.wicket.markup.html.IHeaderContributor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.