Package org.apache.isis.viewer.dnd.view.composite

Examples of org.apache.isis.viewer.dnd.view.composite.StandardFields


    protected void init() {
    }

    protected ViewFactory createFieldFactory() {
        return new StandardFields();
    }
View Full Code Here


public abstract class AbstractFormSpecification extends AbstractObjectViewSpecification {

    @Override
    protected ViewFactory createFieldFactory() {
        return new StandardFields() {
            @Override
            protected int collectionRequirement() {
                return AbstractFormSpecification.this.collectionRequirement();
            }
View Full Code Here

import org.apache.isis.viewer.dnd.view.composite.StandardFields;

public class ConfigurableObjectViewSpecification extends CompositeViewSpecification {

    public ConfigurableObjectViewSpecification() {
        builder = new ObjectFieldBuilder(new StandardFields());
        addSubviewDecorator(new FieldLabelsDecorator());
        addSubviewDecorator(new ConfigurableFieldBorder.Factory());
        addViewDecorator(new GridLayoutControlBorder.Factory());
        addViewDecorator(new IconBorder.Factory());
    }
View Full Code Here

    protected void init() {
    }

    protected ViewFactory createFieldFactory() {
        return new StandardFields();
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.dnd.view.composite.StandardFields

Copyright © 2018 www.massapicom. 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.