All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.thevpc.echo.BreadCrumb Maven / Gradle / Ivy

package net.thevpc.echo;

import net.thevpc.common.props.PropertyType;
import net.thevpc.echo.api.components.AppBreadCrumb;
import net.thevpc.echo.impl.components.ChoiceBase;
import net.thevpc.echo.spi.peers.AppBreadCrumbPeer;

public class BreadCrumb extends ChoiceBase implements AppBreadCrumb {

    public BreadCrumb(String id, PropertyType itemType, Application app) {
        super(id, itemType, false, app, AppBreadCrumb.class, AppBreadCrumbPeer.class);
    }

    public BreadCrumb(String id, Class valueType, Application app) {
        this(id, PropertyType.of(valueType), app);
    }

    public BreadCrumb(Class valueType, Application app) {
        this(null, valueType, app);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy