Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » JFace Document
JFace Document [message #459813] Wed, 17 August 2005 16:36 Go to next message
James Leotta is currently offline James LeottaFriend
Messages: 202
Registered: July 2009
Senior Member
Hello,

Where would I find org.eclipse.jface.text.Document

I imported the jface plugin but the Document class seems to be missing.
Also where would i find the most recent API for SWT?

Thanks
Re: JFace Document [message #459854 is a reply to message #459813] Thu, 18 August 2005 14:07 Go to previous messageGo to next message
Grant Gayed is currently offline Grant GayedFriend
Messages: 2150
Registered: July 2009
Senior Member
Hi James,

org.eclipse.jface.text.Document is in the org.eclipse.text plugin.

SWT's 3.1 API is available:
- on-line:
http://help.eclipse.org/help31/topic/org.eclipse.platform.do c.isv/reference/api/org/eclipse/swt/package-summary.html
- through eclipse menu: Help->Help Contents, Platform Plug-in Developer
Guide->Reference->API Reference

Grant

"James Leotta" <jleotta@bascom.com> wrote in message
news:ddvovj$h3b$1@news.eclipse.org...
> Hello,
>
> Where would I find org.eclipse.jface.text.Document
>
> I imported the jface plugin but the Document class seems to be missing.
> Also where would i find the most recent API for SWT?
>
> Thanks
Re: JFace Document [message #459862 is a reply to message #459854] Thu, 18 August 2005 17:08 Go to previous messageGo to next message
James Leotta is currently offline James LeottaFriend
Messages: 202
Registered: July 2009
Senior Member
Thanks Grant,

Now I need to find jface.text.TreeViewer. It seems odd that jface.text
is spread out over so many plugins. I would think one plugin would be
sufficient. When I find TreeViewer this will be my third to get the
jface.text classes I need.



Grant Gayed wrote:
> Hi James,
>
> org.eclipse.jface.text.Document is in the org.eclipse.text plugin.
>
> SWT's 3.1 API is available:
> - on-line:
> http://help.eclipse.org/help31/topic/org.eclipse.platform.do c.isv/reference/api/org/eclipse/swt/package-summary.html
> - through eclipse menu: Help->Help Contents, Platform Plug-in Developer
> Guide->Reference->API Reference
>
> Grant
>
> "James Leotta" <jleotta@bascom.com> wrote in message
> news:ddvovj$h3b$1@news.eclipse.org...
>
>>Hello,
>>
>>Where would I find org.eclipse.jface.text.Document
>>
>>I imported the jface plugin but the Document class seems to be missing.
>>Also where would i find the most recent API for SWT?
>>
>>Thanks
>
>
>
Re: JFace Document [message #459863 is a reply to message #459862] Thu, 18 August 2005 17:09 Go to previous messageGo to next message
James Leotta is currently offline James LeottaFriend
Messages: 202
Registered: July 2009
Senior Member
Sorry about the previous I ment jface.text.TextViewer

James Leotta wrote:
> Thanks Grant,
>
> Now I need to find jface.text.TreeViewer. It seems odd that jface.text
> is spread out over so many plugins. I would think one plugin would be
> sufficient. When I find TreeViewer this will be my third to get the
> jface.text classes I need.
>
>
>
> Grant Gayed wrote:
>
>> Hi James,
>>
>> org.eclipse.jface.text.Document is in the org.eclipse.text plugin.
>>
>> SWT's 3.1 API is available:
>> - on-line:
>> http://help.eclipse.org/help31/topic/org.eclipse.platform.do c.isv/reference/api/org/eclipse/swt/package-summary.html
>>
>> - through eclipse menu: Help->Help Contents, Platform Plug-in Developer
>> Guide->Reference->API Reference
>>
>> Grant
>>
>> "James Leotta" <jleotta@bascom.com> wrote in message
>> news:ddvovj$h3b$1@news.eclipse.org...
>>
>>> Hello,
>>>
>>> Where would I find org.eclipse.jface.text.Document
>>>
>>> I imported the jface plugin but the Document class seems to be missing.
>>> Also where would i find the most recent API for SWT?
>>>
>>> Thanks
>>
>>
>>
>>
Re: JFace Document [message #459935 is a reply to message #459863] Fri, 19 August 2005 12:56 Go to previous messageGo to next message
Grant Gayed is currently offline Grant GayedFriend
Messages: 2150
Registered: July 2009
Senior Member
TextViewer is in the org.eclipse.jface.text plugin.

As a side note, jface questions are best asked in the eclipse.platform
newsgroup, since jface is not part of swt (though many mistakenly assume
that it is).

Grant

"James Leotta" <jleotta@bascom.com> wrote in message
news:de2fah$q1c$2@news.eclipse.org...
> Sorry about the previous I ment jface.text.TextViewer
>
> James Leotta wrote:
> > Thanks Grant,
> >
> > Now I need to find jface.text.TreeViewer. It seems odd that jface.text
> > is spread out over so many plugins. I would think one plugin would be
> > sufficient. When I find TreeViewer this will be my third to get the
> > jface.text classes I need.
> >
> >
> >
> > Grant Gayed wrote:
> >
> >> Hi James,
> >>
> >> org.eclipse.jface.text.Document is in the org.eclipse.text plugin.
> >>
> >> SWT's 3.1 API is available:
> >> - on-line:
> >>
http://help.eclipse.org/help31/topic/org.eclipse.platform.do c.isv/reference/api/org/eclipse/swt/package-summary.html
> >>
> >> - through eclipse menu: Help->Help Contents, Platform Plug-in Developer
> >> Guide->Reference->API Reference
> >>
> >> Grant
> >>
> >> "James Leotta" <jleotta@bascom.com> wrote in message
> >> news:ddvovj$h3b$1@news.eclipse.org...
> >>
> >>> Hello,
> >>>
> >>> Where would I find org.eclipse.jface.text.Document
> >>>
> >>> I imported the jface plugin but the Document class seems to be
missing.
> >>> Also where would i find the most recent API for SWT?
> >>>
> >>> Thanks
> >>
> >>
> >>
> >>
Re: JFace Document [message #459942 is a reply to message #459935] Fri, 19 August 2005 19:23 Go to previous message
James Leotta is currently offline James LeottaFriend
Messages: 202
Registered: July 2009
Senior Member
Thanks Grant. I am one of the mistaken about JFace and SWT. I will
register with the platform group.



Grant Gayed wrote:
> TextViewer is in the org.eclipse.jface.text plugin.
>
> As a side note, jface questions are best asked in the eclipse.platform
> newsgroup, since jface is not part of swt (though many mistakenly assume
> that it is).
>
> Grant
>
> "James Leotta" <jleotta@bascom.com> wrote in message
> news:de2fah$q1c$2@news.eclipse.org...
>
>>Sorry about the previous I ment jface.text.TextViewer
>>
>>James Leotta wrote:
>>
>>>Thanks Grant,
>>>
>>>Now I need to find jface.text.TreeViewer. It seems odd that jface.text
>>>is spread out over so many plugins. I would think one plugin would be
>>>sufficient. When I find TreeViewer this will be my third to get the
>>>jface.text classes I need.
>>>
>>>
>>>
>>>Grant Gayed wrote:
>>>
>>>
>>>>Hi James,
>>>>
>>>>org.eclipse.jface.text.Document is in the org.eclipse.text plugin.
>>>>
>>>>SWT's 3.1 API is available:
>>>>- on-line:
>>>>
>
> http://help.eclipse.org/help31/topic/org.eclipse.platform.do c.isv/reference/api/org/eclipse/swt/package-summary.html
>
>>>>- through eclipse menu: Help->Help Contents, Platform Plug-in Developer
>>>>Guide->Reference->API Reference
>>>>
>>>>Grant
>>>>
>>>>"James Leotta" <jleotta@bascom.com> wrote in message
>>>>news:ddvovj$h3b$1@news.eclipse.org...
>>>>
>>>>
>>>>>Hello,
>>>>>
>>>>>Where would I find org.eclipse.jface.text.Document
>>>>>
>>>>>I imported the jface plugin but the Document class seems to be
>
> missing.
>
>>>>>Also where would i find the most recent API for SWT?
>>>>>
>>>>>Thanks
>>>>
>>>>
>>>>
>>>>
>
>
Previous Topic:ContentProvider for TableViewer Problem
Next Topic:autocomplete combo text
Goto Forum:
  


Current Time: Thu Apr 25 15:25:38 GMT 2024

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

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

Back to the top