|
-
Nov 24th, 2004, 10:16 PM
#1
Thread Starter
Banned
-
Nov 24th, 2004, 10:21 PM
#2
Thread Starter
Banned
Additional question
In the Preferences -> Java -> Compiler -> Compliance and Class Files
There is an item there with Compiler Compliance Level
and has drop down values... selected is 1.4... could this be the cause of the problem? that all source must comply with 1.4 thus 1.5 new lang features cannot be recognised?
I'm just wondering.
-
Nov 24th, 2004, 10:45 PM
#3
Thread Starter
Banned
NVM
I just read an article and well it says there that support for J2SE 1.5 "Tiger" will be supported in the next year's Eclipse release 3.1
I guess I just have to refrain from using the new language features if I can...
-
Nov 25th, 2004, 02:21 AM
#4
Frenzied Member
"Lies, sanctions, and cruise missiles have never created a free and just society. Only everyday people can do that."
- Zack de la Rocha
Hear me roar.
-
Dec 27th, 2004, 09:23 AM
#5
New Member
Re: How do I make eclipse 3.0.1 support new language features of JDK1.5?
Or use an ANT build.xml file -- and ignore the syntax checking.
Code:
<project name="java15" default="all" basedir=".">
<target name="build">
<depend srcdir="."></depend>
<javac srcdir="." source="1.5">
<compilerarg value="-Xlint"/>
</javac>
</target>
</project>
Or take the plunge with 3.1Mn: eclipse-news-all-M4
Last edited by _plj; Dec 27th, 2004 at 09:33 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|