Package org.netbeans.modules.openoffice.wizard.util

Examples of org.netbeans.modules.openoffice.wizard.util.OOIDLParser


    private void jButtonAddInterfaceActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonAddInterfaceActionPerformed
        InterfacePickUp interfacepickupPanel = new InterfacePickUp();
       
        if ( interfacepickupPanel.display() ) {
            OOIDLParser ooidlparser = new OOIDLParser(
            interfacepickupPanel.getInterfaceFile() );
           
            IDLInterface iDLInterface = ooidlparser.createIDLInterface();
           
            if( iDLInterface == null ) {
                // Message that the IDL does not contain a Interface
                TopManager.getDefault().notify(
                new NotifyDescriptor.Message(
View Full Code Here

TOP

Related Classes of org.netbeans.modules.openoffice.wizard.util.OOIDLParser

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.