Package org.apache.isis.viewer.dnd.form

Examples of org.apache.isis.viewer.dnd.form.InternalFormSpecification


            viewFactory.addSpecification(new FormSpecification());
            viewFactory.addSpecification(new FormWithTableSpecification());
            viewFactory.addSpecification(new WindowTableSpecification());
            // TBA
            viewFactory.addSpecification(new ExpandableFormSpecification());
            viewFactory.addSpecification(new InternalFormSpecification());
            viewFactory.addSpecification(new TwoPartViewSpecification());
            // TBA
            viewFactory.addSpecification(new FormWithDetailSpecification());

            viewFactory.addSpecification(new SummaryFormSpecification());
View Full Code Here


        return form1;
    }

    @Override
    View createSecondaryView(final Axes axes, final Content fieldContent) {
        final View form = new InternalFormSpecification().createView(fieldContent, axes, -1);
        final View labelledForm = LabelBorder.createFieldLabelBorder(new LabelAxis(), form);
        return labelledForm;
    }
View Full Code Here

    }

    @Override
    public View createView(final Content content, final Axes axes, final int sequence) {
        final PanelView wrappedView = new PanelView(content, this);
        wrappedView.setInitialViewSpecification(new InternalFormSpecification());
        final View newView = new IconBorder(wrappedView, Toolkit.getText(ColorsAndFonts.TEXT_TITLE));
        return newView;
    }
View Full Code Here

    protected void buildView() {
        ViewSpecification internalSpecification;
        if (fieldContent.isCollection()) {
            internalSpecification = new SimpleListSpecification();
        } else {
            internalSpecification = new InternalFormSpecification();
        }
        addView(internalSpecification.createView(fieldContent, new Axes(), 0));
    }
View Full Code Here

            viewFactory.addSpecification(new FormSpecification());
            viewFactory.addSpecification(new FormWithTableSpecification());
            viewFactory.addSpecification(new WindowTableSpecification());
            // TBA
            viewFactory.addSpecification(new ExpandableFormSpecification());
            viewFactory.addSpecification(new InternalFormSpecification());
            viewFactory.addSpecification(new TwoPartViewSpecification());
            // TBA
            viewFactory.addSpecification(new FormWithDetailSpecification());

            viewFactory.addSpecification(new SummaryFormSpecification());
View Full Code Here

        return form1;
    }

    @Override
    View createSecondaryView(final Axes axes, final Content fieldContent) {
        final View form = new InternalFormSpecification().createView(fieldContent, axes, -1);
        final View labelledForm = LabelBorder.createFieldLabelBorder(new LabelAxis(), form);
        return labelledForm;
    }
View Full Code Here

        return form1;
    }

    @Override
    View createSecondaryView(final Axes axes, final Content fieldContent) {
        final View form = new InternalFormSpecification().createView(fieldContent, axes, -1);
        final View labelledForm = LabelBorder.createFieldLabelBorder(new LabelAxis(), form);
        return labelledForm;
    }
View Full Code Here

            viewFactory.addSpecification(new FormSpecification());
            viewFactory.addSpecification(new FormWithTableSpecification());
            viewFactory.addSpecification(new WindowTableSpecification());
            // TBA
            viewFactory.addSpecification(new ExpandableFormSpecification());
            viewFactory.addSpecification(new InternalFormSpecification());
            viewFactory.addSpecification(new TwoPartViewSpecification());
            // TBA
            viewFactory.addSpecification(new FormWithDetailSpecification());

            viewFactory.addSpecification(new SummaryFormSpecification());
View Full Code Here

    protected void buildView() {
        ViewSpecification internalSpecification;
        if (fieldContent.isCollection()) {
            internalSpecification = new SimpleListSpecification();
        } else {
            internalSpecification = new InternalFormSpecification();
        }
        addView(internalSpecification.createView(fieldContent, new Axes(), 0));
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.dnd.form.InternalFormSpecification

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.