Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
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