Package com.openkm.openoffice.ui

Examples of com.openkm.openoffice.ui.TreeForm


                {
                    String documentPath = getCurrentDocumentPath();
                    if (documentPath!=null && !documentPath.equals("")) {
                        try {
                            ConfigBean configBean = configFile.read();
                            TreeForm treeForm = new TreeForm(imageUtil);
                            treeForm.initServices(configFile.read().getHost());
                            treeForm.startUp(configBean.getUser(), configBean.getPassword(),documentPath);
                            treeForm.setVisible(true);
                        } catch (OKMException ex) {
                            new ErrorForm(ex);
                        }
                    } else {
                        new ErrorForm(new OKMException(lang.getString("main.error.save.file")));
View Full Code Here

TOP

Related Classes of com.openkm.openoffice.ui.TreeForm

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.