-
I have a schema like this
```json
{
"table": "users",
"id":true,
"properties": {
"username": {
"type": "string",
"null": true,
"uniqu…
-
Hi,
I created a spring java client based on a raml file which has a compilation issue:
``` java
public ResponseEntity getSampleUnits() {
HttpHeaders httpHeaders = new HttpHeaders();
…
-
Hi @kohsuke, I'm just trying to work out whether this fork has support for generating java 8 lambdas? I can see the support for java 8 in the API.
-
Currently some files use Windows line endings.
See discussion at https://github.com/phax/jcodemodel/commit/300a18a9878b3f9b38f21695e17f5888a2cb1e5d#commitcomment-17574321
-
Please add support for header comments like this one from the google protobuf compiler:
``` java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: htmlmessages.proto
package some…
ghost updated
8 years ago
-
JsonSchema:
``` json
{
"models": {
"Foo": {
"id": "Foo",
"properties": {
"statusId": {
"type": "string"
}
…
-
As of now i am using 2.8.3 API. But i am always getting an issue NullPointerIssue in the above mentioned class. When i am trying to open the class with decompiler i am getting issue as Internal Error …
-
when i add these annotations
@KeyMultiple(KeyEvent.KEYCODE_ESCAPE)
boolean handleEscapeActionMultipleEvent(int count) {
//...
return false;
}
@KeyMultiple({KeyEvent.KEYCODE_F…
-
-
I find JavaPoet - https://github.com/square/javapoet - API (much) easier, it is much more popular. I suspect using it in adt4j could simplify a great deal of code and should make life easier for exter…