Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] using @declaredParents for annotations

On Thu, Dec 11, 2008 at 10:12 PM, miro <miroconnect@xxxxxxxxx> wrote:
>
> I want to use @decalredParents   for  an annotation
>
> my aspect
>
>        @DeclareParents("@annotation(gov.hhs.acf.aop.aspects.WorkflowAware)",
>            defaultImpl=DefaultWorkflowMetaData.class)
>           public static WorkflowMetaData workflowMetaData1;
>

@DeclareParents(value="@gov.hhs.acf.aop.aspects.WorkflowAware *",
                          defaultImpl=DefaultWorkflowMetaData.class)
public static WorkflowMetaData workflowMetaData1;

>
> @Target(ElementType.TYPE)
> @Retention(RetentionPolicy.CLASS)
> public @interface WorkflowAware {
>
> }
>
> what I want is all classes which have WorkflowAware  annotaton  should
> implement WorkflowMetaData   please help me write the proper syntax
>
>
>
>        @DeclareParents(value="gov.hhs.acf.web.pages.auditprog.*",
>            defaultImpl=DefaultWorkflowMetaData.class)
>    public static WorkflowMetaData workflowMetaData;

This looks fine.

>
>
> this works for me can I add  to this all classes  with annotation
> WorkflowAware  ?
>
> --
> View this message in context: http://www.nabble.com/using-%40declaredParents--for-annotations-tp20969256p20969256.html
> Sent from the AspectJ - users mailing list archive at Nabble.com.
>
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>


Back to the top