3

I've created an eclipse plugin with a UI that I want to dock by default at the bottom in the Eclipse Java perspective (or any other perspective for that matter). How do I go about setting a default location for my plug-in UI?

stuff22
  • 1,662
  • 4
  • 24
  • 42

1 Answers1

3

...you can influence the initial size and position of your view in other perspectives by using the perspectiveExtensions extension point.

More on this here.

stuff22
  • 1,662
  • 4
  • 24
  • 42