Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
6033b9c
removing debug lines in BigInteger
Oct 15, 2018
fa83f71
JAXB annotation marshaller first-pass complete
Oct 15, 2018
729b117
JAXB marshaller working; preliminary work on unmarshaller
Oct 16, 2018
157a921
Preliminary JAXB marshalling and unmarshalling working.
Oct 17, 2018
118c421
method set/get/is with qualifications
Oct 17, 2018
5398514
preliminary java.awt.List extends JList
Oct 17, 2018
48cd462
JAXB marshalling.
Oct 23, 2018
0f324b1
SwingJS-site.zip for JAXB marshalling/unmarshalling
Oct 23, 2018
08223f2
Fix for BufferedImage rotation
Oct 23, 2018
700bc4e
Moving a2s.A2SEvent to java.awt
Oct 23, 2018
c1a13c8
dev-noA2S -- moving a2s/ to swingjs/a2s
Oct 23, 2018
e399cd9
swingjs/a2s/_README.txt
Oct 24, 2018
3bcc855
JAXB marshaller/unmarshaller for List<Object>, Map<Object,Object>
Oct 25, 2018
377f1ad
JAXB enum marshalling/unmarshalling
Oct 27, 2018
a563e73
adds @XmlTransient
Oct 27, 2018
b6a5eec
checkbox group fix
Oct 30, 2018
3759232
JAXB tested for XmlAccessorTypes FIELD, NONE
Oct 30, 2018
5f764b5
JAXB test files
Oct 30, 2018
7483d51
updated swingjs/ files
Oct 30, 2018
6384bdf
adds org.json
Oct 30, 2018
6489372
JAXB marshaller fix
Oct 30, 2018
2f66d4a
adds URL.getResponseCode()
Oct 30, 2018
fe33526
update for swingjs/
Oct 30, 2018
1b6d50b
update for swingjs/
Oct 30, 2018
5e2b900
swingjs/ update
Oct 30, 2018
245caa7
swingjs/ upgrade fixes HTTPConnection.getResponseCode()
Oct 30, 2018
4ea97a1
working on JAXB
Oct 31, 2018
b74819f
Utilizing package-info.java for package-level marshalling information
Nov 1, 2018
519d437
Adds package-info support for namespace
Nov 1, 2018
aec06c1
uses ObjectFactory (hack) to get QNAME
Nov 1, 2018
d809361
streamlined marshaller, XmlEnum support
Nov 1, 2018
7720a45
JAXB update complete
Nov 2, 2018
338ae6d
JAXB XMLEnumValue for attributes
Nov 2, 2018
fe8c7c3
JAXB for attribute enums
Nov 2, 2018
8b6f1f0
additional JAXB work
Nov 4, 2018
3dde6e2
Java2Script/SwingJS 3.2.4.02 further support for JAXB
Nov 4, 2018
5e03b04
JAXB marshalling by JavaScript successfully unmarshalled in Java
Nov 6, 2018
7faba8a
JAXB unmarshalling succesful for Jalview session
Nov 7, 2018
a50eb59
eclipse note; j2s config TODO note
Nov 7, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed sources/net.sf.j2s.core/SwingJS-site.zip
Binary file not shown.
Binary file modified sources/net.sf.j2s.core/dist/swingjs/SwingJS-site.zip
Binary file not shown.
Binary file modified sources/net.sf.j2s.core/dist/swingjs/net.sf.j2s.core.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion sources/net.sf.j2s.core/dist/swingjs/timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20181007153006
20181106221821
Binary file modified sources/net.sf.j2s.core/dist/swingjs/ver/3.2.4/SwingJS-site.zip
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion sources/net.sf.j2s.core/dist/swingjs/ver/3.2.4/timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20181007153006
20181106221821
4 changes: 3 additions & 1 deletion sources/net.sf.j2s.core/src/net/sf/j2s/core/CorePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ public class CorePlugin extends Plugin {
* register the bundle version properly. So we use VERSION here instead.
*
*/
public static String VERSION = "3.2.4.00";
public static String VERSION = "3.2.4.02";
// BH 11/04/2018 -- 3.2.4.02 support for JAXB - all accessor types, ObjectFactory, package-level namespace, but not yet accessor type
// BH 10/27/2018 -- 3.2.4.01 support for JAXB FIELD+propOrder and NONE types
// BH 9/28/2018 -- 3.2.4.00 adds minimal support for JAXB
// BH 9/23/2018 -- 3.2.3.00 new transpiler + SwingJS-site.zip - support for java.applet.Applet and java.awt.* controls without use of a2s.*
// BH 9/16/2018 -- 3.2.2.06 removes "$" in JApplet public method alternative name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ boolean compileToJavaScript(IFile javaSource) {
addHTML(visitor.getAppList(false), siteFolder, htmlTemplate, false);
} catch (Throwable e) {
e.printStackTrace();
e.printStackTrace(System.out);
// find the file and delete it.
String filePath = j2sPath;
String rootName = root.getJavaElement().getElementName();
Expand Down
Loading