我试图将java原生JLabel(或JPanel)合并到scala swing应用程序中,并且我遇到了编译错误。
我试图运行的代码如下。
package com.david
import javax.swing.JPanel
import scala.swing._
object Hello extends SimpleSwingApplication {
def top = new MainFrame {
title = "First Swing App"
contents = new JPanel()
}
}
编译器给出了以下错误。
$ sbt compile
[info] Set current project to MyGui (in build file:/home/david/programming/scala/MyGui/)
[info] Compiling 1 Scala source to /home/david/programming/scala/MyGui/target/scala-2.11/classes...
[error] /home/david/programming/scala/MyGui/src/main/scala/com/david/Hello.scala:12: type mismatch;
[error] found : javax.swing.JPanel
[error] required: scala.swing.Component
[error] contents = new JPanel()
[error] ^
[error] one error found
[error] (compile:compileIncremental) Compilation failed
[error] Total time: 3 s, completed Apr 10, 2015 12:13:11 PM
此外,这是我的build.sbt
文件:
name := "MyGui"
version := "1.0"
scalaVersion := "2.11.6"
libraryDependencies += "org.scala-lang.modules" %% "scala-swing" % "1.0.1"
系统如下。
$ java -version
java version "1.7.0_76"
Java(TM) SE Runtime Environment (build 1.7.0_76-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.76-b04, mixed mode)
$ uname -a
Linux strela 3.13.0-48-generic #80-Ubuntu SMP Thu Mar 12 11:16:15 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
我知道人们有had similar problems,但这是不同的 - 我使用了正确的组件(JLabel / JPanel而不是Label / Panel)。
答案 0 :(得分:1)
Scala swing使用一个瘦的包装器组件抽象,其中scala.swing.Component
基类包装Java swing组件而不是它们的类层次结构的一部分。
这意味着你必须使用scala swing中的Panel / Label,或者使用Component.wrap(javaSwingComponent)
将java swing组件制作成scala swing组件,可以与其他scala swing组件一起使用。