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

When adding a property change in the @ServerModel, declex must validate and generate a validation error, Example: @ServerModel (getHeaders = "Accept: * / *") @Model (async = true, orderBy =...

Hi, I started following this new tech few month ago, but I feel kind of lost, I don't know where to start from. Do you have any manual o tutorial...

With the new @Export mechanism implemented with DecleX 2.0, several beans can be created which autocontain whole the behavior for a feature. Many times these beans create events which are...

enhancement

It is a common situation to call some interface (ex, another activity), specially when integrating 3rd party services, and this activity will return running some Callback. Typically this callback is...

enhancement

Formatted Expressions can be used only with the actions. But they are really useful expressions which in general, extending this to Java can be very useful (while using DecleX of...

enhancement

If the adapters bassed to AdapterClass are normal @EBeans, they should be using any of the @EBean features, including Actions and all kind of dependency injections. Note that AdapterClasses are...

enhancement

If you use some expression like this: ```java PendingResult pendingAchievements = Games.Achievements.load(googleApiHelper.getApiClient(), true); ``` Inside an action method, the class "Achievements.LoadAchievementsResult" will generate errors, it is not parsed correctly by...

bug

When injections are done, the values are assigned to the injected values automatically, this mechanism makes difficult to support @External annotation for fields. For every injection, a method to assign...

enhancement

When this method is processed: ```java protected Boolean validateTutorOperation() { User_ currentUser = authenticateManager.getCurrentUser(); if (currentUser == null) { {$TutorDataError("Only a logged in user can create lessons");} return false; }...

bug

Inside a Fragment, a Populate method is not being linked to the user interface if it is not declared with public, so this is not linked: ```java @Populate String someMethod()...

bug