I want to override the eclipse file copy/paste operation. My exact
requirnment is I want to copy one additional file (which is not selected
for copy)when I perform copy operation on a file. During paste I want to
paste both the file to be pasted (the one which I selected and the other
one which I copied by overridng copy operation). Can some one please
suggest me how I can achieve this.
The gist is that you can use the
org.eclipse.ui.navigator.navigatorContent extension point, specifying an
actionProvider that overrides
org.eclipse.ui.navigator.resources.actions.EditActions.
Hi ,
I wanted to override the copy action when right click on a file in
project explorer view. I am trying to override by using the extension
point =org.eclipse.ui.navigator.navigatorContent in my plugin.xml file.And
provide my own 'CopyActionProvider' this extends CommonActionProvider.
My requirement is that whenever I right click on files with for example:
'.txt' extension and select copy then then my copy action should be
executed. This should be from Package Explorer view.
In my plugin file the navigator content extension code is as below. I am
not able to get the control in to my own copy action class .
Using overrides="org.eclipse.ui.navigator.resources.actions.EditActions "
also did not help.
Should i should i override PackageExplorerActionGroup if so how shud tat
be done as it did not work when used just like EditActionGroup.
I have pasted the piece of code from my plugin.xml file, where i am
extending navigator content. can anybody tell me wat s wrong here . below
is the code