You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -26,9 +26,30 @@ The library comprises three main packages:
26
26
27
27
-`scala.swing`: All widget classes and traits.
28
28
-`scala.swing.event`: The event hierarchy.
29
-
-`scala.swing.test`: A set of demos.
30
-
29
+
-`examples.swing`: A set of demos. ( in ./docs )
31
30
32
-
Notes:
31
+
32
+
ScalaDocs
33
+
---
34
+
35
+
Documentation for scala-swing included in 2.11.1 is can be found [here](http://www.scala-lang.org/api/2.11.1/scala-swing/#scala.swing.package)
36
+
37
+
Other version can be found at [http://www.scala-lang.org/documentation/api.html](http://www.scala-lang.org/documentation/api.html)
38
+
39
+
40
+
Current Work
41
+
---
42
+
43
+
Current changes are being made on the **java7** branch. This is to mainly because of the EOL of java6 and the generification that happened between jdk6 and jdk7 requiring a difference in the source code. This class files are targeted at java6 and will run with all versions upwards.
44
+
45
+
<br>
46
+
47
+
_Notes:_
33
48
34
49
- Visual appearance of combo boxes using the GTK LaF is broken on JDKs < 1.7b30. This is a Java Swing problem.
50
+
- The generification added to some java7 swing components make the course code incompatible between java6 and java7. This is not an issue with the generated .class files because of _Type Erasure_ will work across all versions of java from java6 upwards. See [Issue SI-3634](https://issues.scala-lang.org/browse/SI-3634)
0 commit comments