此内容没有您所选择的语言版本。
13.16. Fine Grained Property Change Listener Example
- DRL example
declare Person @propertyReactive firstName : String lastName : String end
declare Person @propertyReactive firstName : String lastName : String end
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Java class example
@PropertyReactive public static class Person { private String firstName; private String lastName; }
@PropertyReactive public static class Person { private String firstName; private String lastName; }
Copy to Clipboard Copied! Toggle word wrap Toggle overflow