declex icon indicating copy to clipboard operation
declex copied to clipboard

DecleX - Declarative Framework for Android, easier and faster coding.

Results 100 declex issues
Sort by recently updated
recently updated
newest added

@EBean singleton option it is completely ignore if the class is annotated by @UseModel

defect

DecleX models are serializables, but giving that in Android Parcelable objects are much more efficient, it would be good to make them Parcelables as well.

enhancement

When using AdapterViews or RecyclerView it is used @AdapterClass to specify a custom adapter. But some times there's only some small things which need to be done in the adapter,...

enhancement

This will permit to make use these class in actions and in their full potential, the lazy attribute also prepares Getters and Setters for the field, so it can be...

enhancement

The idea is to create a class named Bind which permits to bind properties to the views. They can as well be populated and recollected, they will be annotated by...

enhancement

DecleX V2 will have a series of Renames: @UseModel => @EModel @ServerModel => @EServerModel @LocalDBModel => @EDataModel @UseDBModel => @EDataModelApplication These will be used for injection: @Model @ServerModel @DataModel This...

enhancement

Right now Actions are executed inside their blocks. A negative effect of this is that actions inside an IF block cannot forward to the next code, let's say we have...

defect

Create methods which could run any server request when called. The idea is to use the @ServerRequest, in a way which doesn't needs to be declared as a @ServerModel (although,...

enhancement

It would be nice to have a @Column policy for @LocalDBModels: If @Column is used in at least one parameter, only @Column annotated fields will be Columns. If @Column is...

enhancement