mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-28 02:33:18 +02:00
[325502] The default editor for a file is not updated when opened in RSE explorer
This commit is contained in:
parent
97683f3e3a
commit
3b97e86fcc
2 changed files with 21 additions and 17 deletions
|
@ -40,6 +40,7 @@
|
||||||
* David McKnight (IBM) - [284420] nullprogressmonitor is needed
|
* David McKnight (IBM) - [284420] nullprogressmonitor is needed
|
||||||
* David McKnight (IBM) - [310215] SystemEditableRemoteFile.open does not behave as expected
|
* David McKnight (IBM) - [310215] SystemEditableRemoteFile.open does not behave as expected
|
||||||
* David McKnight (IBM) - [324519] SystemEditableRemoteFile throws NPE when used in headless mode
|
* David McKnight (IBM) - [324519] SystemEditableRemoteFile throws NPE when used in headless mode
|
||||||
|
* David McKnight (IBM) - [325502] The default editor for a file is not updated when opened in RSE explorer
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.files.ui.resources;
|
package org.eclipse.rse.files.ui.resources;
|
||||||
|
@ -2013,4 +2014,22 @@ public class SystemEditableRemoteFile implements ISystemEditableRemoteObject, IP
|
||||||
return remoteFile.isStale();
|
return remoteFile.isStale();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the editor descriptor to be associated with the remote file
|
||||||
|
* @return the editor descriptor associated with this remote file
|
||||||
|
* @since 3.3
|
||||||
|
*/
|
||||||
|
public IEditorDescriptor getEditorDescriptor(){
|
||||||
|
return _editorDescriptor;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the editor descriptor to be associated with the remote file
|
||||||
|
* @param descriptor the new editor descriptor
|
||||||
|
* @since 3.3
|
||||||
|
*/
|
||||||
|
public void setEditorDescriptor(IEditorDescriptor descriptor){
|
||||||
|
_editorDescriptor = descriptor;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -874,23 +874,8 @@ public class SystemRemoteEditManager
|
||||||
// fall through and let the new editable get created
|
// fall through and let the new editable get created
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (descriptor != null){
|
if (descriptor != null){ // update the editor descriptor
|
||||||
// using reflection to change descriptor since there's
|
editable.setEditorDescriptor(descriptor);
|
||||||
// no API right now
|
|
||||||
try {
|
|
||||||
Class cls = editable.getClass();
|
|
||||||
Field[] fields = cls.getDeclaredFields();
|
|
||||||
for (int i = 0; i < fields.length; i++){
|
|
||||||
Field fld = fields[i];
|
|
||||||
String name= fld.getName();
|
|
||||||
if (name.equals("_editorDescriptor")){ //$NON-NLS-1$
|
|
||||||
fld.setAccessible(true);
|
|
||||||
fld.set(editable, descriptor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception e){
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return editable;
|
return editable;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue