Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-dev] Hiding/removing default IDE options in eclipse application

Hello,

In eclipse application,

Window->Open Perspective -> Custom_ABC Perspective

Apart from this by default we get resource perspective. I tried removing the perspective from registry(reg.deletePerspective(desc)).


PerspectiveRegistry reg = (PerspectiveRegistry)WorkbenchPlugin.getDefault().getPerspectiveRegistry();

 IPerspectiveDescriptor desc = reg.getPerspectives()[1];

 reg.deletePerspective(desc);        

 

But deletePerspective does work as it is checking for predefined flag(PerspectiveRegistry.java).

 

The requirement is to supress all default options like

1) Hiding resource perpective as discussed above

2) Hide File - > New ->Other menu , shows up "Simple" folder apart from the default one.

3) And to disable shortcuts

 

Can anybody throw some light on hiding/removing these default IDE options.

Thanks

Chetu

_______________
Siebel
IT'S ALL ABOUT THE CUSTOMER
Visit www.siebel.com

This e-mail message is for the sole use of the intended recipient(s) and contains confidential and/or privileged information belonging to Siebel Systems, Inc. or its customers or partners. Any unauthorized review, use, copying, disclosure or distribution of this message is strictly prohibited. If you are not an intended recipient of this message, please contact the sender by reply e-mail and destroy all soft and hard copies of the message and any attachments. Thank you for your cooperation.


Back to the top