Guus Bloemsma wrote:
I'm missing an equivalent to a per-property status() method on properties though. Or am I missing something?
Is this view on GUI's documented anywhere?

A property has isImmutable() and isComputed() that helps, and then a property also has metainfo(type) that can be used for any additional metadata you need in the UI. The value is always valid, i.e. it always conforms to the constraints you set on it:

@NotEmpty @Matches("[a-zA-Z]*")
Property<String> name();

/Rickard

_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev

Reply via email to