Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » Internal Browser and title
Internal Browser and title [message #436890] Tue, 20 September 2005 01:21 Go to next message
Haris Peco is currently offline Haris PecoFriend
Messages: 1072
Registered: July 2009
Senior Member
I create browser widget with :
PlatformUI.getWorkbench().getBrowserSupport().createBrowser( ...)
as view

How I can change title in view (title is always 'Internal web browser')

peco
Re: Internal Browser and title [message #436920 is a reply to message #436890] Tue, 20 September 2005 08:22 Go to previous message
Eclipse UserFriend
Originally posted by: heqh.canon-sol.com.cn

you can modify plugin.xml
<extension
point="org.eclipse.ui.views">
<view
...........
name="Internal web browser'"
........
/>
or
in view implement class
public void createPartControl(Composite parent) {
.......
//
//this.setTitle("Internal web browser'");
this.setPartName("Internal web browser'");
}

"snpe" <snpe@snpe.co.yu> wrote in message
news:dgnh3q$rbg$1@news.eclipse.org...
> I create browser widget with :
> PlatformUI.getWorkbench().getBrowserSupport().createBrowser( ...)
> as view
>
> How I can change title in view (title is always 'Internal web browser')
>
> peco
Previous Topic:Hibernate + Spring + RCP hibernate error
Next Topic:Hook before the workbench state is closed?
Goto Forum:
  


Current Time: Sun Dec 08 06:34:43 GMT 2024

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

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

Back to the top