dragome-sdk icon indicating copy to clipboard operation
dragome-sdk copied to clipboard

Dragome is a tool for creating client side web applications in pure Java (JVM) language.

Results 53 dragome-sdk issues
Sort by recently updated
recently updated
newest added

Bumps [junit](https://github.com/junit-team/junit4) from 3.8.2 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

Bumps [htmlunit](https://github.com/HtmlUnit/htmlunit) from 2.22 to 2.37.0. Release notes Sourced from htmlunit's releases. HtmlUnit-2.37.0 Bugfixes many js improvements done in Rhino CHROME 79 FF52 removed FF68 added HtmlUnit-2.36.0 Bugfixes many js...

dependencies

This project looks quite promising, yet no changes in quite a while. Has development been halted or stopped altogether?

``` @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface SomeAnnotation { enum ProcessingType { ASYNC, SYNC, } final class SomeClass { } Class value() default SomeClass.class; SomeEnum processingType() default SomeEnum.ASYNC; } ``` when call...

2017/09/21 - is planing release date for JDK 9 http://openjdk.java.net/projects/jdk9/ @fpetrola, what about check dragome-sdk for support features in 9st version of Java?

Repost from https://github.com/xpenatan/gdx-dragome-backend/issues/25 We can read on this page https://github.com/dragome/dragome-sdk : > Java 8 ready. Build your pages using lambda expressions, default methods, streams but I have this synthetic code:...

bug
pri: critical

There a bug in comparing class. (Object.class) ```Java Class nextClass = type; while (nextClass != Object.class) { classHierarchy.add(nextClass); nextClass = nextClass.getSuperclass(); System.out.println("nextClass: " + nextClass); } ``` Output: type: class...

Having a empty annotation array and trying to get the array from the field to check if the array contains something is crashing ```Java @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD, ElementType.METHOD }) public...