Example usage for org.apache.wicket.markup.html.panel Fragment subclass-usage

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

Introduction

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

Usage

From source file com.evolveum.midpoint.web.component.search.SearchFragmentBase.java

/**
 * @author Viliam Repan (lazyman)
 */
abstract class SearchFragmentBase<T extends Serializable> extends Fragment {

    private static final String ID_REMOVE = "remove";

From source file de.alpharogroup.wicket.components.menu.suckerfish.LinkFragment.java

/**
 * The Class LinkFragment.
 * 
 * @author Asterios Raptis
 */
public final class LinkFragment extends Fragment {

From source file de.alpharogroup.wicket.components.menu.suckerfish.MenuItemFragment.java

/**
 * The Class MenuItemFragment.
 *
 * @author Asterios Raptis
 */
public final class MenuItemFragment extends Fragment {

From source file de.alpharogroup.wicket.components.menu.suckerfish.TextFragment.java

/**
 * The Class TextFragment.
 * 
 * @author Asterios Raptis
 */
class TextFragment extends Fragment {

From source file dk.netdesign.common.osgi.config.wicket.fragment.InputFragment.java

/**
 *
 * @author mnn
 */
public abstract class InputFragment<E> extends Fragment {
    Component formInput;

From source file org.brixcms.plugin.site.page.tile.admin.TileEditorFragment.java

public abstract class TileEditorFragment extends Fragment implements IGenericComponent<BrixNode> {
    public TileEditorFragment(String id, String markupId, MarkupContainer markupProvider,
            final IModel<BrixNode> nodeModel, final String tileId, boolean filterFeedback) {
        super(id, markupId, markupProvider, nodeModel);

        final Form<Void> form = new Form<Void>("form");

From source file org.brixcms.rmiserver.web.admin.GenericFragment.java

public class GenericFragment<T> extends Fragment {
    public GenericFragment(String id, String markupId, MarkupContainer markupProvider) {
        super(id, markupId, markupProvider);
    }

    public GenericFragment(String id, String markupId, MarkupContainer markupProvider, IModel<T> model) {

From source file org.brixcms.web.generic.BrixGenericFragment.java

public class BrixGenericFragment<T> extends Fragment implements IGenericComponent<T> {
    public BrixGenericFragment(String id, String markupId, MarkupContainer markupProvider) {
        super(id, markupId, markupProvider);
    }

    public BrixGenericFragment(String id, String markupId, MarkupContainer markupProvider, IModel<T> model) {

From source file org.hippoecm.frontend.editor.plugins.field.TransparentFragment.java

@Deprecated
public class TransparentFragment extends Fragment implements IComponentResolver {

    private static final long serialVersionUID = 1L;

    public TransparentFragment(String id, String markupId, MarkupContainer markupProvider) {

From source file org.obiba.onyx.webapp.participant.panel.ParticipantAttributeGroupsFragment.java

abstract public class ParticipantAttributeGroupsFragment extends Fragment {

    private static final long serialVersionUID = 1L;

    protected ParticipantAttributeGroupsFragment(String id, IModel<Participant> participantModel,
            List<ParticipantAttribute> attributes, ParticipantMetadata participantMetadata, Panel parentPanel) {