Skip to main content



      Home
Home » Newcomers » Newcomers » drjava plugin + ecliipse 3.1
drjava plugin + ecliipse 3.1 [message #85247] Sun, 10 July 2005 17:35 Go to next message
Eclipse UserFriend
Originally posted by: j8shen.gmail.com

hi all

I downladed the drjava plugin 0.9.5, extracted it and place it in the
eclipse plug-in directory. However, when I do windows-> open perspective ->
other, eclipse does *not* show up(on winxp, sp2). The plug in does work on
my SUSE9.3..

Please advice

Thanks.
Jay
Re: drjava plugin + ecliipse 3.1 [message #85390 is a reply to message #85247] Mon, 11 July 2005 10:22 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse3.rizzoweb.com

J8S wrote:
> hi all
>
> I downladed the drjava plugin 0.9.5, extracted it and place it in the
> eclipse plug-in directory. However, when I do windows-> open perspective ->
> other, eclipse does *not* show up(on winxp, sp2). The plug in does work on
> my SUSE9.3..

Are there any related errors reported in your workspace log file
(/.metadata/.log in your workspace directory)?

Eric
Re: drjava plugin + ecliipse 3.1 [message #85444 is a reply to message #85390] Mon, 11 July 2005 17:55 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: j8shen.gmail.com

..log does not exist. (i unchecked 'hide hidden files' from windows).
so i guess no error messages.


"Eric Rizzo" <eclipse3@rizzoweb.com> wrote in message
news:datved$52m$2@news.eclipse.org...
> J8S wrote:
>> hi all
>>
>> I downladed the drjava plugin 0.9.5, extracted it and place it in the
>> eclipse plug-in directory. However, when I do windows-> open
>> perspective -> other, eclipse does *not* show up(on winxp, sp2). The plug
>> in does work on my SUSE9.3..
>
> Are there any related errors reported in your workspace log file
> (/.metadata/.log in your workspace directory)?
>
> Eric
Re: drjava plugin + ecliipse 3.1 [message #85490 is a reply to message #85444] Mon, 11 July 2005 18:06 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse3.rizzoweb.com

J8S wrote:
> .log does not exist. (i unchecked 'hide hidden files' from windows).
> so i guess no error messages.
>
>
> "Eric Rizzo" <eclipse3@rizzoweb.com> wrote in message
> news:datved$52m$2@news.eclipse.org...
>
>>J8S wrote:
>>
>>>hi all
>>>
>>>I downladed the drjava plugin 0.9.5, extracted it and place it in the
>>>eclipse plug-in directory. However, when I do windows-> open
>>>perspective -> other, eclipse does *not* show up(on winxp, sp2). The plug
>>>in does work on my SUSE9.3..


Hmm. Just to be sure, double check that in your eclipse /plugins
directory you have a directory for DrJava (named edu.rice.cs.... etc)
and that directory has a plugin.xml file and the JAR.

Also, which version of Eclipse are you using? 3.1 is brand new and the
DrJava plugin may not be compatible with it yet.

Other than that, I would recommend posting to whatever forum(s) DrJava
has of its own.

HTH,
Eric
Re: drjava plugin + ecliipse 3.1 [message #85515 is a reply to message #85490] Mon, 11 July 2005 18:25 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: j8shen.gmail.com

Hi

i do have plugin.xml. here is the content
I am using eclipse 3.1 (i guess it's too new :( )

Thanks.

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="edu.rice.cs.drjava"
name="DrJava"
version="0.9.5"
provider-name="Rice University"
class="edu.rice.cs.drjava.plugins.eclipse.EclipsePlugin">

<runtime>
<library name="drjava-eclipse.jar"/>
</runtime>
<requires>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.debug.ui"/>
<import plugin="org.eclipse.jdt.ui"/>
<import plugin="org.eclipse.jdt.core"/>
<import plugin="org.eclipse.ui.console"/>
<import plugin="org.eclipse.core.runtime.compatibility"/>
<import plugin="org.eclipse.search"/>
</requires>


<extension
point="org.eclipse.ui.views">
<category
name="DrJava"
id="edu.rice.cs.drjava">
</category>
<view
name="Interactions Pane"
icon="icons/drjava16.gif"
category="edu.rice.cs.drjava"
class="edu.rice.cs.drjava.plugins.eclipse.views.InteractionsView "
id="edu.rice.cs.drjava.InteractionsView">
</view>
</extension>


<extension
point="org.eclipse.ui.perspectives">
<perspective
name="DrJava"
icon="icons/drjava16.gif"
class="edu.rice.cs.drjava.plugins.eclipse.DrJavaPerspective "
id="edu.rice.cs.drjava.DrJavaPerspective">
</perspective>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<perspectiveShortcut
id="edu.rice.cs.drjava.DrJavaPerspective">
</perspectiveShortcut>
</perspectiveExtension>
<perspectiveExtension
targetID="org.eclipse.debug.ui.DebugPerspective">
<perspectiveShortcut
id="edu.rice.cs.drjava.DrJavaPerspective">
</perspectiveShortcut>
</perspectiveExtension>
</extension>

<extension
point="org.eclipse.ui.preferencePages">
<page id="edu.rice.cs.drjava.Page1"
class="edu.rice.cs.drjava.plugins.eclipse.DrJavaPreferencePage "
name="DrJava">
</page>
</extension>

<extension point="org.eclipse.ui.fontDefinitions">
<fontDefinition
id="edu.rice.cs.drjava.InteractionsFont"
label="DrJava Interactions Font"
defaultsTo="org.eclipse.jdt.ui.editors.textfont">
<description>
The font used in DrJava's Interactions Pane.
</description>
</fontDefinition>
</extension>

</plugin>


"Eric Rizzo" <eclipse3@rizzoweb.com> wrote in message
news:dauqj3$9ur$1@news.eclipse.org...
> J8S wrote:
>> .log does not exist. (i unchecked 'hide hidden files' from windows).
>> so i guess no error messages.
>>
>>
>> "Eric Rizzo" <eclipse3@rizzoweb.com> wrote in message
>> news:datved$52m$2@news.eclipse.org...
>>
>>>J8S wrote:
>>>
>>>>hi all
>>>>
>>>>I downladed the drjava plugin 0.9.5, extracted it and place it in the
>>>>eclipse plug-in directory. However, when I do windows-> open
>>>>perspective -> other, eclipse does *not* show up(on winxp, sp2). The
>>>>plug in does work on my SUSE9.3..
>
>
> Hmm. Just to be sure, double check that in your eclipse /plugins directory
> you have a directory for DrJava (named edu.rice.cs.... etc) and that
> directory has a plugin.xml file and the JAR.
>
> Also, which version of Eclipse are you using? 3.1 is brand new and the
> DrJava plugin may not be compatible with it yet.
>
> Other than that, I would recommend posting to whatever forum(s) DrJava has
> of its own.
>
> HTH,
> Eric
Re: drjava plugin + ecliipse 3.1 [message #85702 is a reply to message #85515] Tue, 12 July 2005 14:01 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse3.rizzoweb.com

J8S wrote:
> Hi
>
> i do have plugin.xml. here is the content
> I am using eclipse 3.1 (i guess it's too new :( )
>
> Thanks.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <?eclipse version="3.0"?>
> <plugin

As I suspected, the plugin is written for Eclipse 3.0, not 3.1
You'll want to remove it from your 3.1, then see if there is any info on
the DrJava web site about plans for a 3.1-compatible version of their
plugin.

HTH,
Eric
Re: drjava plugin + ecliipse 3.1 [message #85826 is a reply to message #85702] Tue, 12 July 2005 21:53 Go to previous message
Eclipse UserFriend
Originally posted by: j8shen.gmail.com

thanks!!

"Eric Rizzo" <eclipse3@rizzoweb.com> wrote in message
news:db10ks$vmi$1@news.eclipse.org...
> J8S wrote:
>> Hi
>>
>> i do have plugin.xml. here is the content
>> I am using eclipse 3.1 (i guess it's too new :( )
>>
>> Thanks.
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <?eclipse version="3.0"?>
>> <plugin
>
> As I suspected, the plugin is written for Eclipse 3.0, not 3.1
> You'll want to remove it from your 3.1, then see if there is any info on
> the DrJava web site about plans for a 3.1-compatible version of their
> plugin.
>
> HTH,
> Eric
Previous Topic:applet viewer
Next Topic:Using Xerces 2.7 with J2SE 1.4.2
Goto Forum:
  


Current Time: Sun Apr 27 10:16:17 EDT 2025

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

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

Back to the top