Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Visual Editor (VE) » Has VE been tested on amd64?
Has VE been tested on amd64? [message #44053] Fri, 25 June 2004 15:31 Go to next message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
Only I am running Linux on the AMD64. So I was extremely happy to find an
Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
just thought VE was not as good as it sounded but I downloaded it onto my
laptop running linux with P4 and it is working great.

So, I am guessing there is not much testing on the AMD64 for VE. Now is
there a way I can help test and summit results?

The problem I am having in VE is first of all, when creating new visual
class, I get an error saying creation of element failed. I can open an
existing class with the visual editor though. The other problem, which is
a large problem is the code generated by VE is wrong. This is an example:

private void initialize() this.setContentPane(getJButton());
{
this.setSize(449, 107);

}

If I am doing anything wrong please tell me. If it is from using
eclipse-linux-amd64 I would like to help identify problems for the
developers


Thanks for the great product here (works great on my laptop).
John C. Shimek
Re: Has VE been tested on amd64? [message #44084 is a reply to message #44053] Fri, 25 June 2004 15:42 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: richkulp.NO.SPAM.us.ibm.com

We've never tried anything on a 64 bit processor. But we are using
straight java. I wouldn't understand why our stuff fails but the rest of
Eclipse would work.

Can you attach the .log file. Maybe that will give a hint as to what is
wrong.

John Shimek wrote:
> I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> Only I am running Linux on the AMD64. So I was extremely happy to find an
> Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> just thought VE was not as good as it sounded but I downloaded it onto my
> laptop running linux with P4 and it is working great.
>
> So, I am guessing there is not much testing on the AMD64 for VE. Now is
> there a way I can help test and summit results?
>
> The problem I am having in VE is first of all, when creating new visual
> class, I get an error saying creation of element failed. I can open an
> existing class with the visual editor though. The other problem, which is
> a large problem is the code generated by VE is wrong. This is an example:
>
> private void initialize() this.setContentPane(getJButton());
> {
> this.setSize(449, 107);
>
> }
>
> If I am doing anything wrong please tell me. If it is from using
> eclipse-linux-amd64 I would like to help identify problems for the
> developers
>
>
> Thanks for the great product here (works great on my laptop).
> John C. Shimek
>

--
Thanks, Rich Kulp

Re: Has VE been tested on amd64? [message #44144 is a reply to message #44084] Fri, 25 June 2004 19:08 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

I haven't tried much else of Eclipse, I am new to Eclipse and really
wanted to try the VE. Other things may not work right, I dont know.

I have posted my log file and a java file generated by VE on my website
(the log file is long) at iox.homelinux.com - the first entry on the page
has the links to both the log and java file. The application I was
building is a simple window with a menubar, three empty menus, and three
buttons


Rich Kulp wrote:

> We've never tried anything on a 64 bit processor. But we are using
> straight java. I wouldn't understand why our stuff fails but the rest of
> Eclipse would work.

> Can you attach the .log file. Maybe that will give a hint as to what is
> wrong.

> John Shimek wrote:
> > I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> > Only I am running Linux on the AMD64. So I was extremely happy to find an
> > Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> > just thought VE was not as good as it sounded but I downloaded it onto my
> > laptop running linux with P4 and it is working great.
> >
> > So, I am guessing there is not much testing on the AMD64 for VE. Now is
> > there a way I can help test and summit results?
> >
> > The problem I am having in VE is first of all, when creating new visual
> > class, I get an error saying creation of element failed. I can open an
> > existing class with the visual editor though. The other problem, which is
> > a large problem is the code generated by VE is wrong. This is an example:
> >
> > private void initialize() this.setContentPane(getJButton());
> > {
> > this.setSize(449, 107);
> >
> > }
> >
> > If I am doing anything wrong please tell me. If it is from using
> > eclipse-linux-amd64 I would like to help identify problems for the
> > developers
> >
> >
> > Thanks for the great product here (works great on my laptop).
> > John C. Shimek
> >
Re: Has VE been tested on amd64? [message #44206 is a reply to message #44144] Sat, 26 June 2004 14:31 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: myersj.nospam.us.ibm.com

Hey John,

Based on your log file it looks like the there's problems initializing
the Java template generators due to a problem with the zip functions in
your JRE:

!ENTRY org.eclipse.ve.java.core 2 0 Jun 25, 2004 13:51:25.232
!MESSAGE Exception thrown.
!STACK 0
java.lang.InternalError
at java.util.zip.Inflater.end(Native Method)
at java.util.zip.Inflater.end(Inflater.java:294)
at java.util.zip.ZipFile.close(ZipFile.java:369)
at
org.eclipse.jdt.internal.compiler.batch.ClasspathJar.reset(C lasspathJar.java:75)
at
org.eclipse.jdt.internal.compiler.batch.FileSystem.cleanup(F ileSystem.java:106)
at
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. getClass(JavaObjectEmiter.java:349)
at
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. generateObject(JavaObjectEmiter.java:373)

I see you're running the Blackdown version of Java... which may not
provide all the functionality needed by Eclipse. Could you please try
this using Sun's JRE? They have a 1.5.0 Beta 2 JRE available for
linux-amd64. Download it here:
http://java.sun.com/j2se/1.5.0/download.jsp

Please let us know the results with using this JRE.

Thanks,

- Jeff



John Shimek wrote:
> I haven't tried much else of Eclipse, I am new to Eclipse and really
> wanted to try the VE. Other things may not work right, I dont know.
>
> I have posted my log file and a java file generated by VE on my website
> (the log file is long) at iox.homelinux.com - the first entry on the page
> has the links to both the log and java file. The application I was
> building is a simple window with a menubar, three empty menus, and three
> buttons
>
>
> Rich Kulp wrote:
>
>
>>We've never tried anything on a 64 bit processor. But we are using
>>straight java. I wouldn't understand why our stuff fails but the rest of
>>Eclipse would work.
>
>
>>Can you attach the .log file. Maybe that will give a hint as to what is
>>wrong.
>
>
>>John Shimek wrote:
>>
>>>I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
>>>Only I am running Linux on the AMD64. So I was extremely happy to find an
>>>Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
>>>just thought VE was not as good as it sounded but I downloaded it onto my
>>>laptop running linux with P4 and it is working great.
>>>
>>>So, I am guessing there is not much testing on the AMD64 for VE. Now is
>>>there a way I can help test and summit results?
>>>
>>>The problem I am having in VE is first of all, when creating new visual
>>>class, I get an error saying creation of element failed. I can open an
>>>existing class with the visual editor though. The other problem, which is
>>>a large problem is the code generated by VE is wrong. This is an example:
>>>
>>>private void initialize() this.setContentPane(getJButton());
>>>{
>>> this.setSize(449, 107);
>>>
>>> }
>>>
>>>If I am doing anything wrong please tell me. If it is from using
>>>eclipse-linux-amd64 I would like to help identify problems for the
>>>developers
>>>
>>>
>>>Thanks for the great product here (works great on my laptop).
>>>John C. Shimek
>>>
>
>
>
>
Re: Has VE been tested on amd64? [message #44239 is a reply to message #44206] Sat, 26 June 2004 23:06 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

Thank you

I will install java 1.5. I had found the other day that was out for linux
amd64 but figured I would take this one step at time to figure out what is
happening. I am using blackdown because for java 1.4 Sun doesnt have a
amd64 version for 1.4. Thanks for the help.

John Shimek


Jeff Myers wrote:

> Hey John,

> Based on your log file it looks like the there's problems initializing
> the Java template generators due to a problem with the zip functions in
> your JRE:

> !ENTRY org.eclipse.ve.java.core 2 0 Jun 25, 2004 13:51:25.232
> !MESSAGE Exception thrown.
> !STACK 0
> java.lang.InternalError
> at java.util.zip.Inflater.end(Native Method)
> at java.util.zip.Inflater.end(Inflater.java:294)
> at java.util.zip.ZipFile.close(ZipFile.java:369)
> at
>
org.eclipse.jdt.internal.compiler.batch.ClasspathJar.reset(C lasspathJar.java:75)
> at
>
org.eclipse.jdt.internal.compiler.batch.FileSystem.cleanup(F ileSystem.java:106)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. getClass(JavaObjectEmiter.java:349)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. generateObject(JavaObjectEmiter.java:373)

> I see you're running the Blackdown version of Java... which may not
> provide all the functionality needed by Eclipse. Could you please try
> this using Sun's JRE? They have a 1.5.0 Beta 2 JRE available for
> linux-amd64. Download it here:
> http://java.sun.com/j2se/1.5.0/download.jsp

> Please let us know the results with using this JRE.

> Thanks,

> - Jeff



> John Shimek wrote:
> > I haven't tried much else of Eclipse, I am new to Eclipse and really
> > wanted to try the VE. Other things may not work right, I dont know.
> >
> > I have posted my log file and a java file generated by VE on my website
> > (the log file is long) at iox.homelinux.com - the first entry on the page
> > has the links to both the log and java file. The application I was
> > building is a simple window with a menubar, three empty menus, and three
> > buttons
> >
> >
> > Rich Kulp wrote:
> >
> >
> >>We've never tried anything on a 64 bit processor. But we are using
> >>straight java. I wouldn't understand why our stuff fails but the rest of
> >>Eclipse would work.
> >
> >
> >>Can you attach the .log file. Maybe that will give a hint as to what is
> >>wrong.
> >
> >
> >>John Shimek wrote:
> >>
> >>>I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> >>>Only I am running Linux on the AMD64. So I was extremely happy to find an
> >>>Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> >>>just thought VE was not as good as it sounded but I downloaded it onto my
> >>>laptop running linux with P4 and it is working great.
> >>>
> >>>So, I am guessing there is not much testing on the AMD64 for VE. Now is
> >>>there a way I can help test and summit results?
> >>>
> >>>The problem I am having in VE is first of all, when creating new visual
> >>>class, I get an error saying creation of element failed. I can open an
> >>>existing class with the visual editor though. The other problem, which is
> >>>a large problem is the code generated by VE is wrong. This is an example:
> >>>
> >>>private void initialize() this.setContentPane(getJButton());
> >>>{
> >>> this.setSize(449, 107);
> >>>
> >>> }
> >>>
> >>>If I am doing anything wrong please tell me. If it is from using
> >>>eclipse-linux-amd64 I would like to help identify problems for the
> >>>developers
> >>>
> >>>
> >>>Thanks for the great product here (works great on my laptop).
> >>>John C. Shimek
> >>>
> >
> >
> >
> >
Re: Has VE been tested on amd64? [message #44894 is a reply to message #44206] Tue, 29 June 2004 13:09 Go to previous message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

Java 1.5.0_beta2 has been installed for linux-amd64 and eclipse and VE are
working great. Just have 2 minutes of testing so far but not getting the
errors I was before. Can create new file from the visual class option and
the code generated correct, and most important no errors generated!

Thanks for the help Jeff,
John Shimek


Jeff Myers wrote:

> Hey John,

> Based on your log file it looks like the there's problems initializing
> the Java template generators due to a problem with the zip functions in
> your JRE:

> !ENTRY org.eclipse.ve.java.core 2 0 Jun 25, 2004 13:51:25.232
> !MESSAGE Exception thrown.
> !STACK 0
> java.lang.InternalError
> at java.util.zip.Inflater.end(Native Method)
> at java.util.zip.Inflater.end(Inflater.java:294)
> at java.util.zip.ZipFile.close(ZipFile.java:369)
> at
>
org.eclipse.jdt.internal.compiler.batch.ClasspathJar.reset(C lasspathJar.java:75)
> at
>
org.eclipse.jdt.internal.compiler.batch.FileSystem.cleanup(F ileSystem.java:106)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. getClass(JavaObjectEmiter.java:349)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. generateObject(JavaObjectEmiter.java:373)

> I see you're running the Blackdown version of Java... which may not
> provide all the functionality needed by Eclipse. Could you please try
> this using Sun's JRE? They have a 1.5.0 Beta 2 JRE available for
> linux-amd64. Download it here:
> http://java.sun.com/j2se/1.5.0/download.jsp

> Please let us know the results with using this JRE.

> Thanks,

> - Jeff



> John Shimek wrote:
> > I haven't tried much else of Eclipse, I am new to Eclipse and really
> > wanted to try the VE. Other things may not work right, I dont know.
> >
> > I have posted my log file and a java file generated by VE on my website
> > (the log file is long) at iox.homelinux.com - the first entry on the page
> > has the links to both the log and java file. The application I was
> > building is a simple window with a menubar, three empty menus, and three
> > buttons
> >
> >
> > Rich Kulp wrote:
> >
> >
> >>We've never tried anything on a 64 bit processor. But we are using
> >>straight java. I wouldn't understand why our stuff fails but the rest of
> >>Eclipse would work.
> >
> >
> >>Can you attach the .log file. Maybe that will give a hint as to what is
> >>wrong.
> >
> >
> >>John Shimek wrote:
> >>
> >>>I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> >>>Only I am running Linux on the AMD64. So I was extremely happy to find an
> >>>Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> >>>just thought VE was not as good as it sounded but I downloaded it onto my
> >>>laptop running linux with P4 and it is working great.
> >>>
> >>>So, I am guessing there is not much testing on the AMD64 for VE. Now is
> >>>there a way I can help test and summit results?
> >>>
> >>>The problem I am having in VE is first of all, when creating new visual
> >>>class, I get an error saying creation of element failed. I can open an
> >>>existing class with the visual editor though. The other problem, which is
> >>>a large problem is the code generated by VE is wrong. This is an example:
> >>>
> >>>private void initialize() this.setContentPane(getJButton());
> >>>{
> >>> this.setSize(449, 107);
> >>>
> >>> }
> >>>
> >>>If I am doing anything wrong please tell me. If it is from using
> >>>eclipse-linux-amd64 I would like to help identify problems for the
> >>>developers
> >>>
> >>>
> >>>Thanks for the great product here (works great on my laptop).
> >>>John C. Shimek
> >>>
> >
> >
> >
> >
Re: Has VE been tested on amd64? [message #592749 is a reply to message #44053] Fri, 25 June 2004 15:42 Go to previous message
Eclipse UserFriend
Originally posted by: richkulp.NO.SPAM.us.ibm.com

We've never tried anything on a 64 bit processor. But we are using
straight java. I wouldn't understand why our stuff fails but the rest of
Eclipse would work.

Can you attach the .log file. Maybe that will give a hint as to what is
wrong.

John Shimek wrote:
> I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> Only I am running Linux on the AMD64. So I was extremely happy to find an
> Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> just thought VE was not as good as it sounded but I downloaded it onto my
> laptop running linux with P4 and it is working great.
>
> So, I am guessing there is not much testing on the AMD64 for VE. Now is
> there a way I can help test and summit results?
>
> The problem I am having in VE is first of all, when creating new visual
> class, I get an error saying creation of element failed. I can open an
> existing class with the visual editor though. The other problem, which is
> a large problem is the code generated by VE is wrong. This is an example:
>
> private void initialize() this.setContentPane(getJButton());
> {
> this.setSize(449, 107);
>
> }
>
> If I am doing anything wrong please tell me. If it is from using
> eclipse-linux-amd64 I would like to help identify problems for the
> developers
>
>
> Thanks for the great product here (works great on my laptop).
> John C. Shimek
>

--
Thanks, Rich Kulp

Re: Has VE been tested on amd64? [message #592771 is a reply to message #44084] Fri, 25 June 2004 19:08 Go to previous message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

I haven't tried much else of Eclipse, I am new to Eclipse and really
wanted to try the VE. Other things may not work right, I dont know.

I have posted my log file and a java file generated by VE on my website
(the log file is long) at iox.homelinux.com - the first entry on the page
has the links to both the log and java file. The application I was
building is a simple window with a menubar, three empty menus, and three
buttons


Rich Kulp wrote:

> We've never tried anything on a 64 bit processor. But we are using
> straight java. I wouldn't understand why our stuff fails but the rest of
> Eclipse would work.

> Can you attach the .log file. Maybe that will give a hint as to what is
> wrong.

> John Shimek wrote:
> > I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> > Only I am running Linux on the AMD64. So I was extremely happy to find an
> > Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> > just thought VE was not as good as it sounded but I downloaded it onto my
> > laptop running linux with P4 and it is working great.
> >
> > So, I am guessing there is not much testing on the AMD64 for VE. Now is
> > there a way I can help test and summit results?
> >
> > The problem I am having in VE is first of all, when creating new visual
> > class, I get an error saying creation of element failed. I can open an
> > existing class with the visual editor though. The other problem, which is
> > a large problem is the code generated by VE is wrong. This is an example:
> >
> > private void initialize() this.setContentPane(getJButton());
> > {
> > this.setSize(449, 107);
> >
> > }
> >
> > If I am doing anything wrong please tell me. If it is from using
> > eclipse-linux-amd64 I would like to help identify problems for the
> > developers
> >
> >
> > Thanks for the great product here (works great on my laptop).
> > John C. Shimek
> >
Re: Has VE been tested on amd64? [message #592795 is a reply to message #44144] Sat, 26 June 2004 14:31 Go to previous message
Jeff Myers is currently offline Jeff MyersFriend
Messages: 396
Registered: July 2009
Senior Member
Hey John,

Based on your log file it looks like the there's problems initializing
the Java template generators due to a problem with the zip functions in
your JRE:

!ENTRY org.eclipse.ve.java.core 2 0 Jun 25, 2004 13:51:25.232
!MESSAGE Exception thrown.
!STACK 0
java.lang.InternalError
at java.util.zip.Inflater.end(Native Method)
at java.util.zip.Inflater.end(Inflater.java:294)
at java.util.zip.ZipFile.close(ZipFile.java:369)
at
org.eclipse.jdt.internal.compiler.batch.ClasspathJar.reset(C lasspathJar.java:75)
at
org.eclipse.jdt.internal.compiler.batch.FileSystem.cleanup(F ileSystem.java:106)
at
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. getClass(JavaObjectEmiter.java:349)
at
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. generateObject(JavaObjectEmiter.java:373)

I see you're running the Blackdown version of Java... which may not
provide all the functionality needed by Eclipse. Could you please try
this using Sun's JRE? They have a 1.5.0 Beta 2 JRE available for
linux-amd64. Download it here:
http://java.sun.com/j2se/1.5.0/download.jsp

Please let us know the results with using this JRE.

Thanks,

- Jeff



John Shimek wrote:
> I haven't tried much else of Eclipse, I am new to Eclipse and really
> wanted to try the VE. Other things may not work right, I dont know.
>
> I have posted my log file and a java file generated by VE on my website
> (the log file is long) at iox.homelinux.com - the first entry on the page
> has the links to both the log and java file. The application I was
> building is a simple window with a menubar, three empty menus, and three
> buttons
>
>
> Rich Kulp wrote:
>
>
>>We've never tried anything on a 64 bit processor. But we are using
>>straight java. I wouldn't understand why our stuff fails but the rest of
>>Eclipse would work.
>
>
>>Can you attach the .log file. Maybe that will give a hint as to what is
>>wrong.
>
>
>>John Shimek wrote:
>>
>>>I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
>>>Only I am running Linux on the AMD64. So I was extremely happy to find an
>>>Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
>>>just thought VE was not as good as it sounded but I downloaded it onto my
>>>laptop running linux with P4 and it is working great.
>>>
>>>So, I am guessing there is not much testing on the AMD64 for VE. Now is
>>>there a way I can help test and summit results?
>>>
>>>The problem I am having in VE is first of all, when creating new visual
>>>class, I get an error saying creation of element failed. I can open an
>>>existing class with the visual editor though. The other problem, which is
>>>a large problem is the code generated by VE is wrong. This is an example:
>>>
>>>private void initialize() this.setContentPane(getJButton());
>>>{
>>> this.setSize(449, 107);
>>>
>>> }
>>>
>>>If I am doing anything wrong please tell me. If it is from using
>>>eclipse-linux-amd64 I would like to help identify problems for the
>>>developers
>>>
>>>
>>>Thanks for the great product here (works great on my laptop).
>>>John C. Shimek
>>>
>
>
>
>
Re: Has VE been tested on amd64? [message #592809 is a reply to message #44206] Sat, 26 June 2004 23:06 Go to previous message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

Thank you

I will install java 1.5. I had found the other day that was out for linux
amd64 but figured I would take this one step at time to figure out what is
happening. I am using blackdown because for java 1.4 Sun doesnt have a
amd64 version for 1.4. Thanks for the help.

John Shimek


Jeff Myers wrote:

> Hey John,

> Based on your log file it looks like the there's problems initializing
> the Java template generators due to a problem with the zip functions in
> your JRE:

> !ENTRY org.eclipse.ve.java.core 2 0 Jun 25, 2004 13:51:25.232
> !MESSAGE Exception thrown.
> !STACK 0
> java.lang.InternalError
> at java.util.zip.Inflater.end(Native Method)
> at java.util.zip.Inflater.end(Inflater.java:294)
> at java.util.zip.ZipFile.close(ZipFile.java:369)
> at
>
org.eclipse.jdt.internal.compiler.batch.ClasspathJar.reset(C lasspathJar.java:75)
> at
>
org.eclipse.jdt.internal.compiler.batch.FileSystem.cleanup(F ileSystem.java:106)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. getClass(JavaObjectEmiter.java:349)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. generateObject(JavaObjectEmiter.java:373)

> I see you're running the Blackdown version of Java... which may not
> provide all the functionality needed by Eclipse. Could you please try
> this using Sun's JRE? They have a 1.5.0 Beta 2 JRE available for
> linux-amd64. Download it here:
> http://java.sun.com/j2se/1.5.0/download.jsp

> Please let us know the results with using this JRE.

> Thanks,

> - Jeff



> John Shimek wrote:
> > I haven't tried much else of Eclipse, I am new to Eclipse and really
> > wanted to try the VE. Other things may not work right, I dont know.
> >
> > I have posted my log file and a java file generated by VE on my website
> > (the log file is long) at iox.homelinux.com - the first entry on the page
> > has the links to both the log and java file. The application I was
> > building is a simple window with a menubar, three empty menus, and three
> > buttons
> >
> >
> > Rich Kulp wrote:
> >
> >
> >>We've never tried anything on a 64 bit processor. But we are using
> >>straight java. I wouldn't understand why our stuff fails but the rest of
> >>Eclipse would work.
> >
> >
> >>Can you attach the .log file. Maybe that will give a hint as to what is
> >>wrong.
> >
> >
> >>John Shimek wrote:
> >>
> >>>I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> >>>Only I am running Linux on the AMD64. So I was extremely happy to find an
> >>>Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> >>>just thought VE was not as good as it sounded but I downloaded it onto my
> >>>laptop running linux with P4 and it is working great.
> >>>
> >>>So, I am guessing there is not much testing on the AMD64 for VE. Now is
> >>>there a way I can help test and summit results?
> >>>
> >>>The problem I am having in VE is first of all, when creating new visual
> >>>class, I get an error saying creation of element failed. I can open an
> >>>existing class with the visual editor though. The other problem, which is
> >>>a large problem is the code generated by VE is wrong. This is an example:
> >>>
> >>>private void initialize() this.setContentPane(getJButton());
> >>>{
> >>> this.setSize(449, 107);
> >>>
> >>> }
> >>>
> >>>If I am doing anything wrong please tell me. If it is from using
> >>>eclipse-linux-amd64 I would like to help identify problems for the
> >>>developers
> >>>
> >>>
> >>>Thanks for the great product here (works great on my laptop).
> >>>John C. Shimek
> >>>
> >
> >
> >
> >
Re: Has VE been tested on amd64? [message #593083 is a reply to message #44206] Tue, 29 June 2004 13:09 Go to previous message
Eclipse UserFriend
Originally posted by: jcshimek.mn.rr.com

Java 1.5.0_beta2 has been installed for linux-amd64 and eclipse and VE are
working great. Just have 2 minutes of testing so far but not getting the
errors I was before. Can create new file from the visual class option and
the code generated correct, and most important no errors generated!

Thanks for the help Jeff,
John Shimek


Jeff Myers wrote:

> Hey John,

> Based on your log file it looks like the there's problems initializing
> the Java template generators due to a problem with the zip functions in
> your JRE:

> !ENTRY org.eclipse.ve.java.core 2 0 Jun 25, 2004 13:51:25.232
> !MESSAGE Exception thrown.
> !STACK 0
> java.lang.InternalError
> at java.util.zip.Inflater.end(Native Method)
> at java.util.zip.Inflater.end(Inflater.java:294)
> at java.util.zip.ZipFile.close(ZipFile.java:369)
> at
>
org.eclipse.jdt.internal.compiler.batch.ClasspathJar.reset(C lasspathJar.java:75)
> at
>
org.eclipse.jdt.internal.compiler.batch.FileSystem.cleanup(F ileSystem.java:106)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. getClass(JavaObjectEmiter.java:349)
> at
>
org.eclipse.ve.internal.java.vce.templates.JavaObjectEmiter. generateObject(JavaObjectEmiter.java:373)

> I see you're running the Blackdown version of Java... which may not
> provide all the functionality needed by Eclipse. Could you please try
> this using Sun's JRE? They have a 1.5.0 Beta 2 JRE available for
> linux-amd64. Download it here:
> http://java.sun.com/j2se/1.5.0/download.jsp

> Please let us know the results with using this JRE.

> Thanks,

> - Jeff



> John Shimek wrote:
> > I haven't tried much else of Eclipse, I am new to Eclipse and really
> > wanted to try the VE. Other things may not work right, I dont know.
> >
> > I have posted my log file and a java file generated by VE on my website
> > (the log file is long) at iox.homelinux.com - the first entry on the page
> > has the links to both the log and java file. The application I was
> > building is a simple window with a menubar, three empty menus, and three
> > buttons
> >
> >
> > Rich Kulp wrote:
> >
> >
> >>We've never tried anything on a 64 bit processor. But we are using
> >>straight java. I wouldn't understand why our stuff fails but the rest of
> >>Eclipse would work.
> >
> >
> >>Can you attach the .log file. Maybe that will give a hint as to what is
> >>wrong.
> >
> >
> >>John Shimek wrote:
> >>
> >>>I tried VE I20040617 with the required version of GEF, EMF, and eclipse.
> >>>Only I am running Linux on the AMD64. So I was extremely happy to find an
> >>>Eclipse linux-amd64 build. But VE is buggy on my computer. At first I
> >>>just thought VE was not as good as it sounded but I downloaded it onto my
> >>>laptop running linux with P4 and it is working great.
> >>>
> >>>So, I am guessing there is not much testing on the AMD64 for VE. Now is
> >>>there a way I can help test and summit results?
> >>>
> >>>The problem I am having in VE is first of all, when creating new visual
> >>>class, I get an error saying creation of element failed. I can open an
> >>>existing class with the visual editor though. The other problem, which is
> >>>a large problem is the code generated by VE is wrong. This is an example:
> >>>
> >>>private void initialize() this.setContentPane(getJButton());
> >>>{
> >>> this.setSize(449, 107);
> >>>
> >>> }
> >>>
> >>>If I am doing anything wrong please tell me. If it is from using
> >>>eclipse-linux-amd64 I would like to help identify problems for the
> >>>developers
> >>>
> >>>
> >>>Thanks for the great product here (works great on my laptop).
> >>>John C. Shimek
> >>>
> >
> >
> >
> >
Previous Topic:VES20040628 and Eclipse3.0
Next Topic:copy and paste doesn't work after installing VE
Goto Forum:
  


Current Time: Thu Apr 25 18:03:17 GMT 2024

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

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

Back to the top