Example usage for org.apache.wicket.markup ComponentTag RENDER_RAW

List of usage examples for org.apache.wicket.markup ComponentTag RENDER_RAW

Introduction

In this page you can find the example usage for org.apache.wicket.markup ComponentTag RENDER_RAW.

Prototype

int RENDER_RAW

To view the source code for org.apache.wicket.markup ComponentTag RENDER_RAW.

Click Source Link

Document

Render the tag as RawMarkup even if no Component can be found

Usage

From source file:sf.wicklet.dsl.html.impl.WicketBuilder.java

License:Apache License

@Override
public IElement style(final INode... children) {
    return new WicketComponent(WID.SCRIPT_STYLE, "style", children).setAuto(true)
            .setFlags(ComponentTag.RENDER_RAW);
}

From source file:sf.wicklet.dsl.html.impl.WicketBuilder.java

License:Apache License

@Override
public IElement script(final INode... children) {
    return new WicketComponent(WID.SCRIPT_STYLE, "script", children).setAuto(true)
            .setFlags(ComponentTag.RENDER_RAW);
}