Examples of RefreshAction


Examples of org.eclipse.ui.actions.RefreshAction

        // close
        mCloseProjectAction = new CloseResourceAction(shell);

        // refresh
        mRefreshAction = new RefreshAction(shell);

        mRetargetRefreshAction = ActionFactory.REFRESH.create(window);

        mRetargetRefreshAction.setImageDescriptor(
                CasEditorPlugin.getTaeImageDescriptor(
View Full Code Here

Examples of org.eclipse.ui.actions.RefreshAction

            public Shell getShell() {
                return shell;
            }
        };

        refreshAction = new RefreshAction(sp) {
            @Override
            public void run() {
                final IStatus[] errorStatus = new IStatus[1];
                errorStatus[0] = Status.OK_STATUS;
                final WorkspaceModifyOperation op = (WorkspaceModifyOperation) createOperation(errorStatus);
View Full Code Here

Examples of org.eclipse.ui.actions.RefreshAction

  @SuppressWarnings("deprecation")
  @Override
  public void init(ICommonActionExtensionSite aSite) {
    super.init(aSite);
    this.shell_provider = aSite.getViewSite().getShell();
    this.refreshAction = new RefreshAction(this.shell_provider);      
    this.refreshAction.setActionDefinitionId("org.eclipse.ui.file.refresh"); //$NON-NLS-1$
        this.refreshAction.setDisabledImageDescriptor(IDEWorkbenchPlugin.getIDEImageDescriptor("dlcl16/refresh_nav.gif"));//$NON-NLS-1$
        this.refreshAction.setImageDescriptor(IDEWorkbenchPlugin.getIDEImageDescriptor("elcl16/refresh_nav.gif"));//$NON-NLS-1$
        this.refreshAction.setId(ID_PRJ_REFRESH_ACT);
       
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.RefreshAction

  public void init(ICommonActionExtensionSite site) {
    super.init(site);
    this.site = site;
    String viewId = site.getViewSite().getId();
    doubleClickAction = new DoubleClickAction();
    refreshAction = new RefreshAction(viewId);
    StructuredViewer viewer = site.getStructuredViewer();
    refreshAction.setViewer(viewer);
    FabricPlugin.getLogger().debug("============================= View ID: " + viewId);
  }
View Full Code Here

Examples of org.jboss.tools.jmx.ui.internal.actions.RefreshAction

  @Override
  public void fireRefresh() {
    Display.getDefault().syncExec(new Runnable() {
      @Override
      public void run() {
        RefreshAction ra = new RefreshAction(UIHelper.ID_JMX_EXPORER);
        ra.run();
      }
    });
  }
View Full Code Here

Examples of org.neo4j.neoclipse.action.browse.RefreshAction

        stopAction = new StopAction( graphView );
        commitAction = new CommitAction( graphView );
        rollbackAction = new RollbackAction( graphView );
        syncAction = new SyncAction( graphView );
        refNodeAction = new ShowReferenceNodeAction( graphView );
        refreshAction = new RefreshAction( graphView );
        RelationshipTypesProvider relTypesProvider = RelationshipTypesProviderWrapper.getInstance();
        addNewActionSet = new ActionSet( relTypesProvider );
        makeContributions();
        registerChangeHandlers();
        showRelationshipColors = graphView.getLabelProvider().getViewSettings().isShowRelationshipColors();
View Full Code Here

Examples of org.netbeans.modules.languages.pl_sql.editor.explorer.nodes.actions.RefreshAction

    private OracleTopComponent() {
        initComponents();
        org.openide.awt.Actions.connect(AddjButton, (Action) new AddAction());
        org.openide.awt.Actions.connect(DeletejButton, (Action) new DeleteAction());
        org.openide.awt.Actions.connect(RefreshjButton, (Action) new RefreshAction());

        org.openide.awt.Actions.connect(UserjToggleButton, (Action) new UserOAccessAction());
        org.openide.awt.Actions.connect(AlljToggleButton, (Action) new AllOAccessAction());
        org.openide.awt.Actions.connect(DBAjToggleButton, (Action) new DBAOAccessAction());
        // following line tells the top component which lookup should be associated with it
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.