blob: 0e21b2c7e2cd7654652524d083715b00fb1e8943 [file] [log] [blame]
package org.apache.felix.ipojo.test.scenarios.component;
import org.apache.felix.ipojo.test.scenarios.component.Marker.Type;
public class Annotation {
@Marker(name="marker", type=Type.BAR,
sub=@SubMarker(subname="foo"),
arrayOfObjects={"foo", "bar", "baz"},
arrayOfAnnotations= {@SubMarker(subname="foo")}
)
@SubMarker(subname="bar")
@Invisible
public void doSomething() {
System.out.println("Foo ...");
}
@Marker(name="marker", type=Type.BAR,
sub=@SubMarker(subname="foo"),
arrayOfObjects={"foo", "bar", "baz"},
arrayOfAnnotations= {@SubMarker(subname="foo")}
)
@SubMarker(subname="bar")
@Invisible
public Annotation() {
}
}