This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Netbeans Plugiin: Mixing Java & Scala in a Java Project

1 reply
mvackel
Joined: 2009-08-03,
User offline. Last seen 1 year 39 weeks ago.

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

Caoyuan
Joined: 2009-01-18,
User offline. Last seen 42 years 45 weeks ago.
Re: Netbeans Plugiin: Mixing Java & Scala in a Java Project

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.
>
>

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland