I have an Eclipse plugin with a view (ViewPart) which can be opened as usual with Window->Show View… etc
In my activator class how can I find out if it’s open and access the instance of it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Activators are for the lifecycle management of the plugin. The activators are mainly used during the startup and shutdown of the plugin. If its going through the activator, the view is not created already. Can you give some more info on what you are trying to do?
Did you try
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().findView(View.ID);