Skip to main content



      Home
Home » Newcomers » Newcomers » Restart properties view
Restart properties view [message #182707] Sat, 02 December 2006 09:06 Go to next message
Eclipse UserFriend
Originally posted by: francuesta.gmail.com

Hello, IŽm developping a multi-page editor, I select some characteristics
in one page and they are shown in the first page, this characteristics
have properties that I show in the properties view. My problem is that
when I do one change, I need to close the properties view and re-open it,
in other case, the properties are not shown.
How can I restart this view from my code?
If you know the cause of this problem and I donŽt need restart this view,
I would be thankful.

Thank you so much!
Re: Restart properties view [message #182715 is a reply to message #182707] Sat, 02 December 2006 09:10 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: francuesta.gmail.com

I forgot to say that when I make a change in one page, I remove the first
page and I create it with the new characteristics, it can be the problem
with the properties but IŽm not sure and I donŽt know how solve it.

Thank you
Re: Restart properties view [message #182763 is a reply to message #182707] Sun, 03 December 2006 11:51 Go to previous message
Eclipse UserFriend
Originally posted by: herm.gmail.com

IWorkbench workbench = PlatformUI.getWorkbench();
IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
if (window != null)
{
IWorkbenchPage page = window.getActivePage();
if (page != null)
{
try
{
page.showView("org.eclipse.ui.views.PropertySheet");
}
catch (Exception e)
{}
}
}
Previous Topic:Eclipse: Java Development User Guide/Basic Tutorial/Creating your first Java Project/Getting the Sam
Next Topic:VE
Goto Forum:
  


Current Time: Mon May 12 15:35:41 EDT 2025

Powered by FUDForum. Page generated in 0.07540 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top