Example usage for org.apache.wicket.markup.html WebComponent subclass-usage

List of usage examples for org.apache.wicket.markup.html WebComponent subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket.markup.html WebComponent subclass-usage.

Usage

From source file com.blogspot.chicchiricco.c3wicketdemo.CocoonSAXPipeline.java

public class CocoonSAXPipeline extends WebComponent {

    private static final long serialVersionUID = 1L;
    private Pipeline<SAXPipelineComponent> pipeline;
    @SpringBean
    private Settings settings;

From source file com.doculibre.constellio.wicket.components.ConnectorInstanceConfigFormSnippet.java

@SuppressWarnings("serial")
public class ConnectorInstanceConfigFormSnippet extends WebComponent {

    private static final long serialVersionUID = 1L;

    private IModel connectorTypeNameModel;

From source file com.gitblit.wicket.charting.SecureChart.java

/**
 * This is a fork of org.wicketstuff.googlecharts.Chart whose only purpose
 * is to build https urls instead of http urls.
 * 
 * @author Daniel Spiewak
 * @author James Moger

From source file com.gitblit.wicket.ExternalImage.java

public class ExternalImage extends WebComponent {

    private static final long serialVersionUID = 1L;

    public ExternalImage(String id, String url) {
        super(id, new Model<String>(url));

From source file com.googlecode.wicket.jquery.ui.kendo.datatable.DataTable.java

/**
 * Provides a Kendo UI data-table
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 */

From source file com.googlecode.wicket.kendo.ui.datatable.DataTable.java

/**
 * Provides a Kendo UI data-table
 *
 * @param <T> the model object type
 * @author Sebastien Briquet - sebfz1
 */

From source file com.lili.frames.ExampleFrame.java

/**
 * A simple component setting page URL in the src frame tag attribute.
 * 
 * @author Pedro Santos
 */
public class ExampleFrame extends WebComponent {

From source file com.lyndir.lhunath.opal.wayward.component.GenericWebComponent.java

/**
 * <h2>{@link GenericWebComponent}<br> <sub>[in short] (TODO).</sub></h2>
 *
 * <p> <i>Jan 18, 2010</i> </p>
 *
 * @param <T> The model type.

From source file com.mysticcoders.mysticpaste.web.components.GravatarImage.java

/**
 * Simple Web Component that must be attached to an HTML tag of type 'img'.
 * <p/>
 * Supply a model which contains the email address and an optional size attribute
 * which is auto-scaled proportional.
 * <p/>

From source file com.visural.wicket.component.codebox.CodeBox.java

/**
 * A code block which does syntax highlighting of the code contents.
 *
 * Apply to `<pre></pre>` or `<code></code>` DOM element.
 *
 * Wraps the Prettify library by Google - http://code.google.com/p/google-code-prettify/