Skip to main content



      Home
Home » Eclipse Projects » GEF » gef plugin requirements
gef plugin requirements [message #158635] Fri, 19 November 2004 00:26 Go to next message
Eclipse UserFriend
Originally posted by: Lamont_Gilbert.rigidsoftware.com

I am trying to reduce the required plugins for my plugin. I tried to
eliminate

org.eclipse.ui

but the only class that needs it is an Action class which is based on a
class from GEF, SelectionAction. Selection Action is an
org.eclipse.jface.action.Action. And that is in org.eclipse.ui


So does this mean GEF requires org.eclipse.ui. And if it does, why do I
have to include it directly? because I am extending a class that is
based on it? Doesent GEF require draw2d? that is not in the requires
section of my xml file but my plugin still works so far.


What am I missing please!?

--
Respectfully,


CL Gilbert

"Verily, verily, I say unto you, He that entereth not by the door() into
the sheepfold{}, but climbeth up some other *way, the same is a thief
and a robber."

GnuPG Key Fingerprint:
82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D

For a free Java interface to Freechess.org see
http://www.rigidsoftware.com/Chess/chess.html
Re: gef plugin requirements [message #158821 is a reply to message #158635] Fri, 19 November 2004 13:01 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: none.us.ibm.com

org.eclipse.ui doesn't contain IAction. It is just a collection of other
plug-ins and exists for compatibility.

"CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in message
news:cnk06v$e7m$2@www.eclipse.org...
> I am trying to reduce the required plugins for my plugin. I tried to
> eliminate
>
> org.eclipse.ui
>
> but the only class that needs it is an Action class which is based on a
> class from GEF, SelectionAction. Selection Action is an
> org.eclipse.jface.action.Action. And that is in org.eclipse.ui
>
>
> So does this mean GEF requires org.eclipse.ui. And if it does, why do I
> have to include it directly? because I am extending a class that is
> based on it? Doesent GEF require draw2d? that is not in the requires
> section of my xml file but my plugin still works so far.
>
>
> What am I missing please!?
>
> --
> Respectfully,
>
>
> CL Gilbert
>
> "Verily, verily, I say unto you, He that entereth not by the door() into
> the sheepfold{}, but climbeth up some other *way, the same is a thief
> and a robber."
>
> GnuPG Key Fingerprint:
> 82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D
>
> For a free Java interface to Freechess.org see
> http://www.rigidsoftware.com/Chess/chess.html
Re: gef plugin requirements [message #158908 is a reply to message #158821] Fri, 19 November 2004 21:58 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: Lamont_Gilbert.rigidsoftware.com

I know, but it contains Action. and
org.eclipse.gef.ui.actions.WorkbenchPartAction is based on Action.

So that is why I conclude that GEF requires org.eclipse.ui

correct?


Randy Hudson wrote:
> org.eclipse.ui doesn't contain IAction. It is just a collection of other
> plug-ins and exists for compatibility.
>
> "CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in message
> news:cnk06v$e7m$2@www.eclipse.org...
>
>>I am trying to reduce the required plugins for my plugin. I tried to
>>eliminate
>>
>>org.eclipse.ui
>>
>>but the only class that needs it is an Action class which is based on a
>>class from GEF, SelectionAction. Selection Action is an
>>org.eclipse.jface.action.Action. And that is in org.eclipse.ui
>>
>>
>>So does this mean GEF requires org.eclipse.ui. And if it does, why do I
>>have to include it directly? because I am extending a class that is
>>based on it? Doesent GEF require draw2d? that is not in the requires
>>section of my xml file but my plugin still works so far.
>>
>>
>>What am I missing please!?
>>
>>--
>>Respectfully,
>>
>>
>>CL Gilbert
>>
>>"Verily, verily, I say unto you, He that entereth not by the door() into
>>the sheepfold{}, but climbeth up some other *way, the same is a thief
>>and a robber."
>>
>>GnuPG Key Fingerprint:
>>82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D
>>
>>For a free Java interface to Freechess.org see
>>http://www.rigidsoftware.com/Chess/chess.html
>
>
>


--
Respectfully,


CL Gilbert

"Verily, verily, I say unto you, He that entereth not by the door() into
the sheepfold{}, but climbeth up some other *way, the same is a thief
and a robber."

GnuPG Key Fingerprint:
82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D

For a free Java interface to Freechess.org see
http://www.rigidsoftware.com/Chess/chess.html
Re: gef plugin requirements [message #159093 is a reply to message #158908] Mon, 22 November 2004 15:18 Go to previous messageGo to next message
Eclipse UserFriend
No, it doesn't contain Action either. Action's in the org.eclipse.jface
plug-in.

GEF requires Draw2d and it IS mentioned as a required plug-in in GEF's
plugin.xml. GEF also requires SWT, but doesn't need to include it since it
is already required by Draw2d.

"CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in message
news:cnmbrv$vr0$2@www.eclipse.org...
> I know, but it contains Action. and
> org.eclipse.gef.ui.actions.WorkbenchPartAction is based on Action.
>
> So that is why I conclude that GEF requires org.eclipse.ui
>
> correct?
>
>
> Randy Hudson wrote:
> > org.eclipse.ui doesn't contain IAction. It is just a collection of
other
> > plug-ins and exists for compatibility.
> >
> > "CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in
message
> > news:cnk06v$e7m$2@www.eclipse.org...
> >
> >>I am trying to reduce the required plugins for my plugin. I tried to
> >>eliminate
> >>
> >>org.eclipse.ui
> >>
> >>but the only class that needs it is an Action class which is based on a
> >>class from GEF, SelectionAction. Selection Action is an
> >>org.eclipse.jface.action.Action. And that is in org.eclipse.ui
> >>
> >>
> >>So does this mean GEF requires org.eclipse.ui. And if it does, why do I
> >>have to include it directly? because I am extending a class that is
> >>based on it? Doesent GEF require draw2d? that is not in the requires
> >>section of my xml file but my plugin still works so far.
> >>
> >>
> >>What am I missing please!?
> >>
> >>--
> >>Respectfully,
> >>
> >>
> >>CL Gilbert
> >>
> >>"Verily, verily, I say unto you, He that entereth not by the door() into
> >>the sheepfold{}, but climbeth up some other *way, the same is a thief
> >>and a robber."
> >>
> >>GnuPG Key Fingerprint:
> >>82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D
> >>
> >>For a free Java interface to Freechess.org see
> >>http://www.rigidsoftware.com/Chess/chess.html
> >
> >
> >
>
>
> --
> Respectfully,
>
>
> CL Gilbert
>
> "Verily, verily, I say unto you, He that entereth not by the door() into
> the sheepfold{}, but climbeth up some other *way, the same is a thief
> and a robber."
>
> GnuPG Key Fingerprint:
> 82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D
>
> For a free Java interface to Freechess.org see
> http://www.rigidsoftware.com/Chess/chess.html
Re: gef plugin requirements [message #159162 is a reply to message #159093] Mon, 22 November 2004 18:39 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: Lamont_Gilbert.rigidsoftware.com

Pratik Shah wrote:
> No, it doesn't contain Action either. Action's in the org.eclipse.jface
> plug-in.
>

Right, so then GEF requires jface.jar?






> GEF requires Draw2d and it IS mentioned as a required plug-in in GEF's
> plugin.xml. GEF also requires SWT, but doesn't need to include it since it
> is already required by Draw2d.
>
> "CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in message
> news:cnmbrv$vr0$2@www.eclipse.org...
>
>>I know, but it contains Action. and
>>org.eclipse.gef.ui.actions.WorkbenchPartAction is based on Action.
>>
>>So that is why I conclude that GEF requires org.eclipse.ui
>>
>>correct?
>>
>>
>>Randy Hudson wrote:
>>
>>>org.eclipse.ui doesn't contain IAction. It is just a collection of
>
> other
>
>>>plug-ins and exists for compatibility.
>>>
>>>"CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in
>
> message
>
>>>news:cnk06v$e7m$2@www.eclipse.org...
>>>
>>>
>>>>I am trying to reduce the required plugins for my plugin. I tried to
>>>>eliminate
>>>>
>>>>org.eclipse.ui
>>>>
>>>>but the only class that needs it is an Action class which is based on a
>>>>class from GEF, SelectionAction. Selection Action is an
>>>>org.eclipse.jface.action.Action. And that is in org.eclipse.ui
>>>>
>>>>
>>>>So does this mean GEF requires org.eclipse.ui. And if it does, why do I
>>>>have to include it directly? because I am extending a class that is
>>>>based on it? Doesent GEF require draw2d? that is not in the requires
>>>>section of my xml file but my plugin still works so far.
>>>>
>>>>
>>>>What am I missing please!?
>>>>


--
Respectfully,


CL Gilbert

"Verily, verily, I say unto you, He that entereth not by the door() into
the sheepfold{}, but climbeth up some other *way, the same is a thief
and a robber."

GnuPG Key Fingerprint:
82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D

For a free Java interface to Freechess.org see
http://www.rigidsoftware.com/Chess/chess.html
Re: gef plugin requirements [message #159198 is a reply to message #159162] Tue, 23 November 2004 11:24 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: none.us.ibm.com

Go look inside the org.eclipse.ui folder and tell me which JARs you see.

"CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in message
news:cnttav$hb7$1@www.eclipse.org...
> Pratik Shah wrote:
> > No, it doesn't contain Action either. Action's in the org.eclipse.jface
> > plug-in.
> >
>
> Right, so then GEF requires jface.jar?
>
>
Re: gef plugin requirements [message #159262 is a reply to message #159198] Tue, 23 November 2004 14:08 Go to previous message
Eclipse UserFriend
Originally posted by: Lamont_Gilbert.rigidsoftware.com

I see ui.jar. What does this have to do with jface.jar?


Randy Hudson wrote:
> Go look inside the org.eclipse.ui folder and tell me which JARs you see.
>
> "CL [dnoyeb] Gilbert" <Lamont_Gilbert@rigidsoftware.com> wrote in message
> news:cnttav$hb7$1@www.eclipse.org...
>
>>Pratik Shah wrote:
>>
>>>No, it doesn't contain Action either. Action's in the org.eclipse.jface
>>>plug-in.
>>>
>>
>>Right, so then GEF requires jface.jar?
>>
>>
>
>
>


--
Respectfully,


CL Gilbert

"Verily, verily, I say unto you, He that entereth not by the door() into
the sheepfold{}, but climbeth up some other *way, the same is a thief
and a robber."

GnuPG Key Fingerprint:
82A6 8893 C2A1 F64E A9AD 19AE 55B2 4CD7 80D2 0A2D

For a free Java interface to Freechess.org see
http://www.rigidsoftware.com/Chess/chess.html
Previous Topic:Dynamically resizing label
Next Topic:Feedback from Model regading disallowed actions
Goto Forum:
  


Current Time: Sun May 04 16:18:26 EDT 2025

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

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

Back to the top