@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.
@MBeanpublic class MyBean {@MAttributeprivate Complex complex; }@MCompositepublic class Complex {@MItemprivate String name;@MItemprivate String getDesription() { return "desc"; } }
public abstract String value
Copyright © 2016 AXON IVY AG. All rights reserved.