Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » Using show view within the perspective creation
Using show view within the perspective creation [message #842722] Thu, 12 April 2012 15:10 Go to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
I keep getting a null return value when trying to get the active workbench page inside my perspective's createInitialLayout function.

Doesn't matter if I use getPages or getActivePage. Is there a way to get the active page during the perspective setup? I need to have the active page because I need to create views with a secondary ID on startup, which seemingly can only be done with the page.showView() function.

Here's my code
	public void createInitialLayout(IPageLayout layout) {
		layout.setEditorAreaVisible(false);
		layout.setFixed(true);
		
		String editorArea = layout.getEditorArea();
		
		IFolderLayout mainFolder = layout.createFolder(MAIN_FOLDER_ID, IPageLayout.LEFT,
				1.0f, editorArea);
		mainFolder.addView(View2.ID);
		
		IFolderLayout networkFolder = layout.createFolder(NETWORK_FOLDER_ID, 
				IPageLayout.LEFT, 0.15F, MAIN_FOLDER_ID);
		
		networkFolder.addPlaceholder(View.ID + ":*");
		
		IWorkbench wb = PlatformUI.getWorkbench();
		IWorkbenchWindow win = wb.getActiveWorkbenchWindow();
		IWorkbenchPage page = win.getPages()[0];
		
		try {
			page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
			page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
		} catch (PartInitException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
	}



EDIT

So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

		//networkFolder.addView(View.ID);
		final Display disp = PlatformUI.getWorkbench().getDisplay();
		disp.syncExec(new Runnable(){
			public void run(){
				if(!disp.isDisposed()){
					IWorkbench wb = PlatformUI.getWorkbench();
					System.out.println(wb.getWorkbenchWindowCount());
					IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
					IWorkbenchPage[] pages = win.getPages();
					System.out.println("pages:" + pages.length);

					
					
					/*try {
						page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
						page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
					} catch (PartInitException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}*/
				}
			}
		});

[Updated on: Thu, 12 April 2012 19:04]

Report message to a moderator

Re: Using show view within the perspective creation [message #842958 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
The forums went down when I posted my reply. Now there are like 20 of the same message. weird.

[Updated on: Thu, 12 April 2012 19:19]

Report message to a moderator

Re: Using show view within the perspective creation [message #842959 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

		//networkFolder.addView(View.ID);
		final Display disp = PlatformUI.getWorkbench().getDisplay();
		disp.syncExec(new Runnable(){
			public void run(){
				if(!disp.isDisposed()){
					IWorkbench wb = PlatformUI.getWorkbench();
					System.out.println(wb.getWorkbenchWindowCount());
					IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
					IWorkbenchPage[] pages = win.getPages();
					System.out.println("pages:" + pages.length);

					
					
					/*try {
						page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
						page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
					} catch (PartInitException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}*/
				}
			}
		});
Re: Using show view within the perspective creation [message #842965 is a reply to message #842722] Thu, 12 April 2012 18:44 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

		//networkFolder.addView(View.ID);
		final Display disp = PlatformUI.getWorkbench().getDisplay();
		disp.syncExec(new Runnable(){
			public void run(){
				if(!disp.isDisposed()){
					IWorkbench wb = PlatformUI.getWorkbench();
					System.out.println(wb.getWorkbenchWindowCount());
					IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
					IWorkbenchPage[] pages = win.getPages();
					System.out.println("pages:" + pages.length);

					
					
					/*try {
						page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
						page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
					} catch (PartInitException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}*/
				}
			}
		});
Re: Using show view within the perspective creation [message #842990 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #842991 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #842992 is a reply to message #842722] Thu, 12 April 2012 18:44 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843011 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843012 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843013 is a reply to message #842722] Thu, 12 April 2012 18:44 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843036 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843037 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843038 is a reply to message #842722] Thu, 12 April 2012 18:44 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843062 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843063 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843064 is a reply to message #842722] Thu, 12 April 2012 18:44 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843096 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843097 is a reply to message #842722] Thu, 12 April 2012 18:43 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #843098 is a reply to message #842722] Thu, 12 April 2012 18:44 Go to previous messageGo to next message
abadamcd1 abadamcd1 is currently offline abadamcd1 abadamcd1Friend
Messages: 40
Registered: December 2011
Member
So I've been able to retrieve the active workbench window if I put my code int a syncExec command. However, I still can't get it to return any pages.

//networkFolder.addView(View.ID);
final Display disp = PlatformUI.getWorkbench().getDisplay();
disp.syncExec(new Runnable(){
public void run(){
if(!disp.isDisposed()){
IWorkbench wb = PlatformUI.getWorkbench();
System.out.println(wb.getWorkbenchWindowCount());
IWorkbenchWindow win = wb.getWorkbenchWindows()[0];
IWorkbenchPage[] pages = win.getPages();
System.out.println("pages:" + pages.length);



/*try {
page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
} catch (PartInitException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
}
}
});
Re: Using show view within the perspective creation [message #845899 is a reply to message #842722] Sun, 15 April 2012 14:24 Go to previous message
Wim Jongman is currently offline Wim JongmanFriend
Messages: 423
Registered: July 2009
Senior Member
Hi Crypt,

You are obvioulsy too early. Try to add a listener to the workbenchwindow.
Try a page listener.

Regards,

Wim


> I keep getting a null return value when trying to get the active workbench
page inside my perspective's createInitialLayout function.
>
> Doesn't matter if I use getPages or getActivePage. Is there a way to get
the active page during the perspective setup? I need to have the active page
because I need to create views with a secondary ID on startup, which
seemingly can only be done with the page.showView() function.
>
> Here's my code
>
> public void createInitialLayout(IPageLayout layout) {
> layout.setEditorAreaVisible(false);
> layout.setFixed(true);
>
> String editorArea = layout.getEditorArea();
>
> IFolderLayout mainFolder = layout.createFolder(MAIN_FOLDER_ID,
IPageLayout.LEFT,
> 1.0f, editorArea);
> mainFolder.addView(View2.ID);
>
> IFolderLayout networkFolder = layout.createFolder(NETWORK_FOLDER_ID,
> IPageLayout.LEFT, 0.15F, MAIN_FOLDER_ID);
>
> networkFolder.addPlaceholder(View.ID + ":*");
>
> IWorkbench wb = PlatformUI.getWorkbench();
> IWorkbenchWindow win = wb.getActiveWorkbenchWindow();
> IWorkbenchPage page = win.getPages()[0];
>
> try {
> page.showView(View.ID, "1", IWorkbenchPage.VIEW_VISIBLE);
> page.showView(View.ID, "2", IWorkbenchPage.VIEW_VISIBLE);
> } catch (PartInitException e) {
> // TODO Auto-generated catch block
> e.printStackTrace();
> }
>
> }
Previous Topic:How to have several views which are not resizable?
Next Topic:rcp standalone view--how to show hidden titles at runtime
Goto Forum:
  


Current Time: Thu Mar 28 22:00:35 GMT 2024

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

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

Back to the top