Package cli_fmw.delegate.directory.complex.reportType

Examples of cli_fmw.delegate.directory.complex.reportType.DirectoryReportType


            throw new ReportException(ex.getLocalizedMessage(), ex);
        }
    }

    public DirectoryReportTypeItem getReportType() throws ClipsException {
        DirectoryReportType drt = DirectoryLocator.getDirectory(DirectoryReportType.class, false);
        return drt.getItemFromID(getDetails().reportType);
    }
View Full Code Here


            cache = searcher.getQueryList(item, null);
        }
    }

    private void setTree() throws ClipsException {
        DirectoryReportType drt = DirectoryLocator.getDirectory(DirectoryReportType.class);
        treeReportTypes.setModel(new TreeModelReportType(drt));
        treeReportTypes.setSelectionPath(null);
    }
View Full Code Here

                parent.getItems().append(item);
                treeReportTypes.updateUI();
            }
            else {
                dd.parentItem = 0;
                DirectoryReportType directory = (DirectoryReportType)
                    DirectoryLocator.getDirectory(DirectoryReportType.class, false);
                directory.getItems().append(item);
                treeReportTypes.updateUI();
            }
            treeReportTypes.expandPath(treeReportTypes.getSelectionPath());
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here

            DirectoryReportTypeItem item = (DirectoryReportTypeItem) treeReportTypes.getLastSelectedPathComponent();

            DirectoryReportTypeItem parent = item.getParent();

            if (parent == null) {
                DirectoryReportType dir =
                        (DirectoryReportType) DirectoryLocator.getDirectory(DirectoryReportType.class, false);
                 dir.getItems().remove(item);
            }
            else {
                parent.getItems().remove(item);
            }
            treeReportTypes.updateUI();
View Full Code Here

TOP

Related Classes of cli_fmw.delegate.directory.complex.reportType.DirectoryReportType

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.