Package org.netbeans.modules.openoffice.wizard.panels.idl

Examples of org.netbeans.modules.openoffice.wizard.panels.idl.ForwardDclPanel


        return s;
    }

    public BasePanel getEditPanel()
    {
        ForwardDclPanel forwarddclpanel = new ForwardDclPanel();
        forwarddclpanel.setName(getName());
        forwarddclpanel.setInterface(((ForwardDclKey)key).isInterface());
        return forwarddclpanel;
    }
View Full Code Here


    public void reInit(BasePanel BasePanel)
    {
        if(BasePanel instanceof ForwardDclPanel)
        {
            ForwardDclPanel forwarddclpanel = (ForwardDclPanel)BasePanel;
            String s = forwarddclpanel.getName();
            boolean flag = forwarddclpanel.isInterface();
            if(!s.equals(getName()))
            {
                setName(s);
                key.setName(s);
            }
View Full Code Here

TOP

Related Classes of org.netbeans.modules.openoffice.wizard.panels.idl.ForwardDclPanel

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.