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

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


        return s;
    }

    public BasePanel getEditPanel()
    {
        ValuePanel valuepanel = new ValuePanel();
        ValueKey valuekey = (ValueKey)key;
        valuepanel.setName(valuekey.getName());
        valuepanel.setType(valuekey.getType());
        valuepanel.setPublic(valuekey.isPublic());
        valuepanel.setLength(valuekey.getLength());
        return valuepanel;
    }
View Full Code Here


    public void reInit(BasePanel BasePanel)
    {
        if(BasePanel instanceof ValuePanel)
        {
            ValuePanel valuepanel = (ValuePanel)BasePanel;
            ValueKey valuekey = (ValueKey)key;
            String s = valuepanel.getName();
            String s1 = valuepanel.getType();
            String s2 = valuepanel.getLength();
            boolean flag = valuepanel.isPublic();
            if(!getName().equals(s))
            {
                setName(s);
                valuekey.setName(s);
            }
View Full Code Here

TOP

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

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.