-
I'm using jsonschema2pojo in my project, and every time I create a POJO it prints out the path to the generated file. Is there any way to turn this off?
-
We need to explicitly state type-arguments sometimes when invoking methods, like in
```
List.nil(); // Static-invocation
```
I've found no way to generate this with codemodel.
-
There is no ternary operator in codemodel, like
```
return a != null ? a : b;
```
If-statements are too heavyweight sometimes.
-
I have an attribute defined like this:
```
"myAttribute":
{
"title": "My Attribute",
"type": "string",
"javaType": "MyAttribut…
-
This exception is occurring on an `Activity` I have annotated with an `@AfterViews` method.
``` java
java.lang.NullPointerException
at org.eclipse.jdt.apt.core.internal.AptCompilationParticipant.…
-
Hi. AndroidAnnotations has basically stopped working in my Eclipse. No code is being generated anymore.
I had this problem once before and it turned out one of my `res/values` XML files was invalid. …
-
I encountered a very strange exception out of the blue today. I'm afraid I don't know exactly what caused it as I just started Eclipse like any other day.
I'm using:
- AndroidAnnotations 2.7 release
…
-
I am running into a problem. Just created a new app, added a couple of libraries (actionbar support library, joda time, ... and androidannotations). Restarting Eclipse / cleaning project does nothing,…
-
I was healed After you restart the eclipse, but you may want to uniformly report.
My environment is the following.
OS: LinuxMint 14
Eclipse: Version: Juno Service Release 2 Build id: 20130225-0426
and…
-
Using @OrmLiteDao, androidannotations will generate code like this:
``` java
connectionSource_ = OpenHelperManager.getHelper(this, DatabaseHelper.class).getConnectionSource();
try {
clickGroupDao…