Search in sources :

Example 1 with ViewProperty

use of com.codename1.rad.ui.ViewProperty in project CodeRAD by shannah.

the class ViewPropertyParameter method createBindingParam.

public static <V> ViewPropertyParameter<V> createBindingParam(ViewProperty<V> property, Tag... tags) {
    ViewPropertyParameter<V> out = new ViewPropertyParameter<V>();
    out.tags = new Tags(tags);
    out.property = property;
    return out;
}
Also used : Tags(com.codename1.rad.models.Tags)

Aggregations

Tags (com.codename1.rad.models.Tags)1