- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Netbeans Plugiin: Mixing Java & Scala in a Java Project
Fri, 2010-04-16, 06:07
Using Netbeans 6.8 and the Scala plugin.
Is it possible to create and use a Scala class defined inside a Java
Project? I tried (in the same java project):
------- file: Main.java
package com.pk;
public class Main {
public static void main(String[] args) {
ScalaClass cs = new ScalaClass(7);
}
}
---------------
------- file ScalaClass.scala
package com.pk;
class ScalaClass(x: Int) {
val y = x * 2
println(y)
}
---------
The Java compiler issues an error: "Cannot find symbol. Symbol: ScalaClass
..."
Tried also creating another package and placing the ScalaClass in it, and
importing in the java code. Same error.
It seems that the Scala plugin is not being able to find/compile the Scala
code when inside a Java project. Also, the Scala source doesn't show syntax
highlight.
Marcos Ackel
You should create a Scala project, then mix java class under this
project. Or, if you create maven project, put src file as:
src/main/scala/....
src/main/java/....
On Fri, Apr 16, 2010 at 1:07 PM, M.Ackel wrote:
>
> Using Netbeans 6.8 and the Scala plugin.
>
> Is it possible to create and use a Scala class defined inside a Java
> Project? I tried (in the same java project):
>
> ------- file: Main.java
> package com.pk;
>
> public class Main {
> public static void main(String[] args) {
> ScalaClass cs = new ScalaClass(7);
> }
> }
> ---------------
> ------- file ScalaClass.scala
> package com.pk;
> class ScalaClass(x: Int) {
> val y = x * 2
> println(y)
> }
> ---------
> The Java compiler issues an error: "Cannot find symbol. Symbol: ScalaClass
> ..."
>
> Tried also creating another package and placing the ScalaClass in it, and
> importing in the java code. Same error.
>
> It seems that the Scala plugin is not being able to find/compile the Scala
> code when inside a Java project. Also, the Scala source doesn't show syntax
> highlight.
>
> Marcos Ackel
> --
> View this message in context: http://old.nabble.com/Netbeans-Plugiin%3A-Mixing-Java---Scala-in-a-Java-...
> Sent from the Scala - Tools mailing list archive at Nabble.com.
>
>