@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface MComposite
Use this annotation on classes that are used as complex attribute
types. Use MItem
to define the items of the complex value.
@MBean
public class MyBean {@MAttribute
private Complex complex; }@MComposite
public class Complex {@MItem
private String name;@MItem
private String getDesription() { return "desc"; } }
public abstract String value
Copyright © 2016 AXON IVY AG. All rights reserved.