Package com.volantis.mcs.eclipse.ab.editors.layout

Examples of com.volantis.mcs.eclipse.ab.editors.layout.FormatComposite


     */
    private void doColumnDeletion(ODOMChangeEvent event) {
        ODOMElement source = (ODOMElement) event.getSource();
        // Find the FC associated with the source's element. This is needed
        // to determine which column was removed.
        FormatComposite childFC = gridModifier.getChildFCForElement(source);
        int[] columnsToDelete = new int[]{childFC.getColumn()};
        gridModifier.deleteColumns(columnsToDelete);
    }
View Full Code Here


                    parentFCElement = sourceParent.getParent();
                }

                if (event.getNewValue() == null &&
                        parentFCElement == element) {
                    FormatComposite childFC =
                            formatCompositeModifier.
                            getChildFCForElement(source);

                    if (childFC != null) {
                        formatCompositeModifier.removeChildFC(childFC);
View Full Code Here

        ODOMElement firstChild =
                (ODOMElement) source.getContent(ELEMENT_FILTER).get(0);
        // Find the FC associated with the source's element. This is needed
        // to determine which row was removed.
        FormatComposite childFC = gridModifier.getChildFCForElement(firstChild);
        int[] rowsToDelete = new int[]{childFC.getRow()};
        gridModifier.deleteRows(rowsToDelete);
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.ab.editors.layout.FormatComposite

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.