org.beanlet
Annotation Type ProxyMethod
@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface ProxyMethod
Methods marked with this annotation are so-called proxy methods. Proxy
methods handle invocations for non existent operations.
XML Representation
The following xml-fragment shows how to express this annotation in xml. The italic attribute of the 'proxy-method' tag is used to identify the element to which this annotation is applied. The other attribute can be specified optionally if the annotation specifies a default value for the particular annotation method.
<beanlets xmlns="http://beanlet.org/schema/beanlet"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://beanlet.org/schema/beanlet http://beanlet.org/schema/beanlet/beanlet_1_0.xsd">
<beanlet name="foo" type="com.acme.Foo">
<proxy-method method="bar" description=""/>
</beanlet>
</beanlets>
description
public abstract String description
- Default:
- ""
Copyright © 2006-2012. All Rights Reserved.