Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5957963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:28:32+00:00 2026-05-22T18:28:32+00:00

I am developing a RCP application and I need cut/copy/paste in this app. As

  • 0

I am developing a RCP application and I need cut/copy/paste in this app. As there are already commands which are delivered by eclipse (org.eclipse.ui.edit.copy, …) I want to use them (I already added them to the toolbar, e.g.) in an editor.
I played around a little, but I don’t get it how I can react to the copy/paste command. E.g. how do I get informed in an editor if something was copied or pasted?

Is there an easy way to use the commands like the Save Command. There I just have to implement the ISaveablePart and then the doSave() or doSaveAs() methods are called…I really like this, but I didn’t find ICopyablePart,… interfaces 😉

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T18:28:33+00:00Added an answer on May 22, 2026 at 6:28 pm

    If you need specific behaviour to copy (or any command) within your editor or view, you would activate a handler for it. Usually in your createPartControl(Composite) method:

    IHandlerService serv = (IHandlerService) getSite().getService(IHandlerService.class);
    MyCopyHandler cp = new MyCopyHandler(this);
    serv.activateHandler(org.eclipse.ui.IWorkbenchCommandConstants.EDIT_COPY, cp);
    

    The other common way is to provide a handler through your plugin.xml:

    <handler commandId="org.eclipse.ui.edit.copy"
             handler="com.example.app.MyCopyHandler">
       <activeWhen>
          <with variable="activePartId">
             <equals value="com.example.app.MyEditorId"/>
          </with>
       </activeWhen>
    </handler>
    

    Then in your handler, you would get the active part and call your copy implementation on it. ex:

    IWorkbenchPart part = HandlerUtil.getActivePart(event);
    if (part instanceof MyEditor) {
        ((MyEditor)part).copy();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've been developing a java application with the eclipse RCP which requires the Java
When developing a eclipse rcp applicatin,I need to restart the application after I changed
I am developing an Eclipse RCP application. In this application I am importing the
Is it possible, when developing an Eclipse RCP Application, to stack a view with
We are developing an Eclipse RCP application. We decided to use SVN for revision
When I am developing an Eclipse RCP application, what is the easiest way to
I'm developing an Eclipse RCP application. I have been told that the UI part
I'm developing my first Eclipse RCP application and I would like to know how
I'm developing an Eclipse RCP based application, that uses the resource model of eclipse
I am developing an Eclipse RCP application and have a strange problem: I open

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.