Package org.apache.directory.ldapstudio.browser.ui.actions.proxy

Examples of org.apache.directory.ldapstudio.browser.ui.actions.proxy.EntryEditorActionProxy


            this.openValueEditorPreferencesAction = null;

            for ( Iterator it = this.entryEditorActionMap.keySet().iterator(); it.hasNext(); )
            {
                String key = ( String ) it.next();
                EntryEditorActionProxy action = ( EntryEditorActionProxy ) this.entryEditorActionMap.get( key );
                action.dispose();
                action = null;
                it.remove();
            }
            this.entryEditorActionMap.clear();
            this.entryEditorActionMap = null;
View Full Code Here


    }


    public void enableRenameEntryAction()
    {
        this.renameProxy = new EntryEditorActionProxy( valueEditorProxy.viewer, new RenameAction() );
    }
View Full Code Here

        EntryEditorWidgetConfiguration configuration )
    {
        super( mainWidget, configuration );
        TreeViewer viewer = mainWidget.getViewer();

        entryEditorActionMap.put( editAttributeDescriptionAction, new EntryEditorActionProxy( viewer,
            new EditAttributeDescriptionAction( viewer ) ) );
        entryEditorActionMap.put( newAttributeAction, new EntryEditorActionProxy( viewer, new NewAttributeAction() ) );
        entryEditorActionMap.put( deleteAllValuesAction, new EntryEditorActionProxy( viewer,
            new DeleteAllValuesAction() ) );

    }
View Full Code Here

TOP

Related Classes of org.apache.directory.ldapstudio.browser.ui.actions.proxy.EntryEditorActionProxy

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.