Package fr.openwide.maven.artifact.notifier.web.application.notification.component

Source Code of fr.openwide.maven.artifact.notifier.web.application.notification.component.CustomWebMarkupContainer

package fr.openwide.maven.artifact.notifier.web.application.notification.component;

import org.apache.wicket.markup.html.WebMarkupContainer;

import fr.openwide.maven.artifact.notifier.web.application.notification.behavior.StyleAttributeAppender;

public class CustomWebMarkupContainer extends WebMarkupContainer {
 
  private static final long serialVersionUID = 3955262127059805260L;
 
  public CustomWebMarkupContainer(String id, String style) {
    super(id);
    add(new StyleAttributeAppender(style));
  }
 
}
TOP

Related Classes of fr.openwide.maven.artifact.notifier.web.application.notification.component.CustomWebMarkupContainer

TOP
Copyright © 2018 www.massapi.com. 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.