Examples of endStyleable()


Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

            throw new RendererException(
                    exceptionLocalizer.format("renderer-error", destination),
                    pe);
        }
   
        formatStylingEngine.endStyleable(source);
    }

    /**
     * Returns the to or from link for the fragment based on the direction
     * specified.
 
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

        layers.setLayer(TableLayers.COLUMN_GROUP, columnGroupStyles);

        Styles[] columnStyles = getColumnStyles(grid, formatStylingEngine,
                requiredColumns);

        formatStylingEngine.endStyleable(
                SyntheticStyleableFormat.GRID_COLUMNS);

        if (logger.isDebugEnabled()) {
            logger.debug("Grid.writeOutput()");
        }
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

                logger.debug("Output not required for row " + r);
            }

        }

        formatStylingEngine.endStyleable(
                SyntheticStyleableFormat.GRID_BODY);

        module.writeCloseGrid(attributes);
        formatStylingEngine.endStyleable(grid);
    }
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

        formatStylingEngine.endStyleable(
                SyntheticStyleableFormat.GRID_BODY);

        module.writeCloseGrid(attributes);
        formatStylingEngine.endStyleable(grid);
    }

    /**
     * Build an array of column styles for later merging with cell styles.
     *
 
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

                columnStyles,
                requiredColumns, columns, module, layers);

        module.writeCloseGridRow(rowAttributes);

        formatStylingEngine.endStyleable(row);
    }

    /**
     * Write only the row elements, not the start/end row markup.
     *
 
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

            context.renderFormat(childInstance);
        }

        module.writeCloseGridChild(childAttributes);

        formatStylingEngine.endStyleable(
                SyntheticStyleableFormat.GRID_CELL);
    }

    private interface IndexIterator {
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

                attributes.setPane(pane);

                renderPaneInstance(context, paneInstance);

                // Finished styling the pane and its contents.
                formatStylingEngine.endStyleable(pane);
            }
        } catch (IOException e) {
            throw new RendererException(exceptionLocalizer.format(
                    "renderer-error",
                    instance.getFormat()), e);
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

        CoordinateConverter converter = chooseCoordinateConverter(
                context, instance, spatial, formatStyles);

        render(context, instance, formatStyles, converter);

        formatStylingEngine.endStyleable(spatial);
    }

    /**
     * Chooses the CoordinateConverter to use.
     *
 
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

        Styles[] columnStyles = getColumnStyles(
                formatStylingEngine, columns, requiredSlices,
                columnStyleClasses);

        formatStylingEngine.endStyleable(
                SyntheticStyleableFormat.SPATIAL_COLUMNS);

        // Style the group of rows. See the comment in getColumnStyles().
        Styles spatialBodyStyles = formatStylingEngine.startStyleable(
                SyntheticStyleableFormat.SPATIAL_BODY,
View Full Code Here

Examples of com.volantis.mcs.runtime.layouts.styling.FormatStylingEngine.endStyleable()

                writeChild(childIndex, row, column);

                closeSpatialCell();

                formatStylingEngine.endStyleable(
                        SyntheticStyleableFormat.SPATIAL_CELL);
            }

            closeSpatialRow();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.