Package com.volantis.mcs.layouts

Examples of com.volantis.mcs.layouts.Pane


        // Create a null reference to a PAPI dissecting pane.
        DissectingPane papiPane = null;

        // Grab the pane layout of the name given.
        Pane pane = pageContext.getPane(name);

        // If it is a dissecting pane layout...
        if (pane instanceof com.volantis.mcs.layouts.DissectingPane) {

            // Then grab it's associated dissecting pane layout instance.
View Full Code Here


        context.pushDeviceLayoutContext(deviceContext);

        DOMOutputBuffer dom = new DOMOutputBuffer();
        dom.initialise();
        PaneAttributes attributes = new PaneAttributes();
        Pane pane = new Pane(null);
        attributes.setPane(pane);

        final Element expected;
        // @todo 2005060816 annotate child with style information if it's not inherited from the parent
        dom.openStyledElement("body", attributes);
View Full Code Here

    // javadoc inherited
    protected DOMOutputBuffer getOutputBuffer(
            MenuAttributes attributes) throws ProtocolException {
       
        // retrieve the pane information from the menus attriubtes
        Pane pane = attributes.getPane();

        AbstractPaneInstance paneInstance = (AbstractPaneInstance)
                pageContext.getDeviceLayoutContext().getCurrentFormatInstance(
                        pane);
       
View Full Code Here

                = (XFFormElementImpl) pageContext.getCurrentElement();
        com.volantis.mcs.protocols.XFFormAttributes formAttributes =
                formElement.getProtocolAttributes();

        String paneName = attributes.getPane();
        Pane pane = null;
        if (null == paneName) {
            FormInstance form = (FormInstance) formAttributes.getFormData();
            pane = ((Form) form.getFormat()).getDefaultPane();
            paneName = pane.getName();
        }

        FormatReference formatRef =
                FormatReferenceParser.parsePane(paneName, pageContext);
        NDimensionalIndex paneIndex = formatRef.getIndex();
View Full Code Here

            if (paneName != null) {
                // Try and find the pane with the specified name, if it could
                // not be found then return and skip the element body.
                FormatReference formatRef =
                        FormatReferenceParser.parsePane(paneName, pageContext);
                Pane pane = pageContext.getPane(formatRef.getStem());

                if (pane == null) {
                    skipped = true;
                    return SKIP_ELEMENT_BODY;
                }
View Full Code Here

        // found then return and skip the element body.
        String paneName = attributes.getPane();
        if (paneName != null) {
            FormatReference formatRef =
                    FormatReferenceParser.parsePane(paneName, pageContext);
            Pane pane = pageContext.getPane(formatRef.getStem());
            NDimensionalIndex paneIndex = formatRef.getIndex();

            if (pane == null) {
                skipped = true;
                return SKIP_ELEMENT_BODY;
View Full Code Here

                (ColumnIteratorPaneAttributes) ProtocolIntegrationTestHelper.
                provideAttributes(ColumnIteratorPaneAttributes.class);

        final VolantisProtocol protocol = getProtocol();

        attributes.setPane(new Pane(new CanvasLayout()));

        MethodInvoker invoker = new MethodInvoker() {
            public void invoke() throws Exception {
                protocol.writeOpenColumnIteratorPane(attributes);
                protocol.writeCloseColumnIteratorPane(attributes);
View Full Code Here

    public void testWriteOpenColumnIteratorPaneElement() throws Exception {
        final ColumnIteratorPaneAttributes attributes =
                (ColumnIteratorPaneAttributes) ProtocolIntegrationTestHelper.
                provideAttributes(ColumnIteratorPaneAttributes.class);

        attributes.setPane(new Pane(new CanvasLayout()));
        final VolantisProtocol protocol = getProtocol();

        MethodInvoker invoker = new MethodInvoker() {
            public void invoke() throws Exception {
                protocol.writeOpenColumnIteratorPaneElement(attributes);
View Full Code Here

        final VolantisProtocol protocol = getProtocol();

        MethodInvoker invoker = new MethodInvoker() {
            public void invoke() throws Exception {

                attributes.setPane(new Pane(new CanvasLayout()));
                protocol.writeOpenPane(attributes);
                protocol.writeClosePane(attributes);
            }
        };
        String expecting = getExpectedWriteOpenPaneResult();
View Full Code Here

    public void testWriteOpenRowIteratorPane() throws Exception {
        final RowIteratorPaneAttributes attributes =
                (RowIteratorPaneAttributes) ProtocolIntegrationTestHelper.
                provideAttributes(RowIteratorPaneAttributes.class);

        attributes.setPane(new Pane(new CanvasLayout()));
        final VolantisProtocol protocol = getProtocol();

        MethodInvoker invoker = new MethodInvoker() {
            public void invoke() throws Exception {
                protocol.writeOpenRowIteratorPane(attributes);
View Full Code Here

TOP

Related Classes of com.volantis.mcs.layouts.Pane

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.