Package org.netbeans.modules.openoffice

Examples of org.netbeans.modules.openoffice.InstallationPanel


        //        );
        //        panelnorth.add( jbuttonOfficeDirectory );
        //
        //        // End
       
        final JPanel panel = new InstallationPanel();
       
        String[] stringInstallationPath = new String[ 2 ];
        boolean incorrect = true;
        while ( incorrect ) {
            org.openide.WizardDescriptor.Iterator iter = new org.openide.WizardDescriptor.Iterator() {
               
                public void addChangeListener(ChangeListener changelistener) {
                }
               
                public org.openide.WizardDescriptor.Panel current() {
                    org.openide.WizardDescriptor.Panel pane = new org.openide.WizardDescriptor.Panel() {
                       
                        public void addChangeListener(ChangeListener changelistener) {
                        }
                       
                        public Component getComponent() {
                            panel.putClientProperty("WizardPanel_contentData", new String[] {
                                "Select OpenOffice.org SDK directory"
                            });
                            panel.putClientProperty("WizardPanel_contentSelectedIndex", new Integer(0));
                            return panel;
                        }
                       
                        public HelpCtx getHelp() {
                            return null;
View Full Code Here

TOP

Related Classes of org.netbeans.modules.openoffice.InstallationPanel

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.