I am trying to use some library code written in scala from a java program. I have a function that returns an array (a scala Array), and I thought what could be done
Tree[] = ScalaObject.myScalaFunction()
But I get this error:
[error] found : scala.runtime.BoxedArray [error] required: org.grammaticalframework.Trees.Absyn.Tree[]
What is the correct way to use scala array in java?
source share