Package org.apache.directory.studio.ldapbrowser.ui.actions.proxy

Examples of org.apache.directory.studio.ldapbrowser.ui.actions.proxy.ModificationLogsViewActionProxy


    {
        this.view = view;
        SourceViewer viewer = this.view.getMainWidget().getSourceViewer();

        modificationLogsViewActionMap = new HashMap<String, ModificationLogsViewActionProxy>();
        modificationLogsViewActionMap.put( olderAction, new ModificationLogsViewActionProxy( viewer, new OlderAction(
            view ) ) );
        modificationLogsViewActionMap.put( newerAction, new ModificationLogsViewActionProxy( viewer, new NewerAction(
            view ) ) );
        modificationLogsViewActionMap.put( refreshAction, new ModificationLogsViewActionProxy( viewer,
            new RefreshAction( view ) ) );
        modificationLogsViewActionMap.put( clearAction, new ModificationLogsViewActionProxy( viewer, new ClearAction(
            view ) ) );
        modificationLogsViewActionMap.put( exportAction, new ModificationLogsViewActionProxy( viewer,
            new ExportAction() ) );
        enableModificationLogsAction = new EnableModificationLogsAction();
        openModificationLogsPreferencePageAction = new OpenModificationLogsPreferencePageAction();
    }
View Full Code Here


    {
        this.view = view;
        SourceViewer viewer = this.view.getMainWidget().getSourceViewer();

        modificationLogsViewActionMap = new HashMap<String, ModificationLogsViewActionProxy>();
        modificationLogsViewActionMap.put( olderAction, new ModificationLogsViewActionProxy( viewer, new OlderAction(
            view ) ) );
        modificationLogsViewActionMap.put( newerAction, new ModificationLogsViewActionProxy( viewer, new NewerAction(
            view ) ) );
        modificationLogsViewActionMap.put( refreshAction, new ModificationLogsViewActionProxy( viewer,
            new RefreshAction( view ) ) );
        modificationLogsViewActionMap.put( clearAction, new ModificationLogsViewActionProxy( viewer, new ClearAction(
            view ) ) );
        enableModificationLogsAction = new EnableModificationLogsAction();
        openModificationLogsPreferencePageAction = new OpenModificationLogsPreferencePageAction();
    }
View Full Code Here

    {
        this.view = view;
        SourceViewer viewer = this.view.getMainWidget().getSourceViewer();

        modificationLogsViewActionMap = new HashMap<String, ModificationLogsViewActionProxy>();
        modificationLogsViewActionMap.put( olderAction, new ModificationLogsViewActionProxy( viewer, this,
            new OlderAction( view ) ) );
        modificationLogsViewActionMap.put( newerAction, new ModificationLogsViewActionProxy( viewer, this,
            new NewerAction( view ) ) );
        modificationLogsViewActionMap.put( refreshAction, new ModificationLogsViewActionProxy( viewer, this,
            new RefreshAction( view ) ) );
        modificationLogsViewActionMap.put( clearAction, new ModificationLogsViewActionProxy( viewer, this,
            new ClearAction( view ) ) );
    }
View Full Code Here

        if ( view != null )
        {
            for ( Iterator it = modificationLogsViewActionMap.keySet().iterator(); it.hasNext(); )
            {
                String key = ( String ) it.next();
                ModificationLogsViewActionProxy action = ( ModificationLogsViewActionProxy ) modificationLogsViewActionMap
                    .get( key );
                action.dispose();
                action = null;
                it.remove();
            }
            modificationLogsViewActionMap.clear();
            modificationLogsViewActionMap = null;
View Full Code Here

     */
    public void setInput( ModificationLogsViewInput input )
    {
        for ( Iterator it = modificationLogsViewActionMap.values().iterator(); it.hasNext(); )
        {
            ModificationLogsViewActionProxy action = ( ModificationLogsViewActionProxy ) it.next();
            action.inputChanged( input );
        }
    }
View Full Code Here

    {
        this.view = view;
        SourceViewer viewer = this.view.getMainWidget().getSourceViewer();

        modificationLogsViewActionMap = new HashMap<String, ModificationLogsViewActionProxy>();
        modificationLogsViewActionMap.put( olderAction, new ModificationLogsViewActionProxy( viewer, new OlderAction(
            view ) ) );
        modificationLogsViewActionMap.put( newerAction, new ModificationLogsViewActionProxy( viewer, new NewerAction(
            view ) ) );
        modificationLogsViewActionMap.put( refreshAction, new ModificationLogsViewActionProxy( viewer,
            new RefreshAction( view ) ) );
        modificationLogsViewActionMap.put( clearAction, new ModificationLogsViewActionProxy( viewer, new ClearAction(
            view ) ) );
        modificationLogsViewActionMap.put( exportAction, new ModificationLogsViewActionProxy( viewer,
            new ExportAction() ) );
        enableModificationLogsAction = new EnableModificationLogsAction();
        openModificationLogsPreferencePageAction = new OpenModificationLogsPreferencePageAction();
    }
View Full Code Here

    {
        this.view = view;
        SourceViewer viewer = this.view.getMainWidget().getSourceViewer();

        modificationLogsViewActionMap = new HashMap<String, ModificationLogsViewActionProxy>();
        modificationLogsViewActionMap.put( olderAction, new ModificationLogsViewActionProxy( viewer, new OlderAction(
            view ) ) );
        modificationLogsViewActionMap.put( newerAction, new ModificationLogsViewActionProxy( viewer, new NewerAction(
            view ) ) );
        modificationLogsViewActionMap.put( refreshAction, new ModificationLogsViewActionProxy( viewer,
            new RefreshAction( view ) ) );
        modificationLogsViewActionMap.put( clearAction, new ModificationLogsViewActionProxy( viewer, new ClearAction(
            view ) ) );
        modificationLogsViewActionMap.put( exportAction, new ModificationLogsViewActionProxy( viewer,
            new ExportAction() ) );
        enableModificationLogsAction = new EnableModificationLogsAction();
        openModificationLogsPreferencePageAction = new OpenModificationLogsPreferencePageAction();
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.studio.ldapbrowser.ui.actions.proxy.ModificationLogsViewActionProxy

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.