[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-12-15 Thread [EMAIL PROTECTED]
Yes, the AOP IDE is out of date - DO NOT USE IT View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3994294#3994294 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3994294 ___ jboss-u

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-12-02 Thread fabiocsilva
RESOLVED: It really has a problem with JBoss IDE. After some compilations the file jboss-aop.xml is ignored. Then I used "ant" and the way based on annotations of JBoss AOP. Running ! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3990748#3990748 Reply to th

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-12-01 Thread fabiocsilva
I made download of version 1.5, but build did not function. error: anonymous wrote : | _default:compile-classes: | | BUILD FAILED | /home/fabio/uneb/projeto/bibliotecas/jboss-aop/svn/jboss-as-with-aop/tools/etc/buildmagic/buildmagic.ent:439: Could not create task or type of type: depe

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread fabiocsilva
Ok, I used the expression ?Nothing?: (: (: (? to indicate that the suggestion ?ElementType.TYPE? did not correct the problem. I go to make tests with the cited examples and later I publish the result. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989903#3989

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread [EMAIL PROTECTED]
"fabiocsilva" wrote : Nothing... :(:(:( | THis is not a proper description of your problem "fabiocsilva" wrote : I am using JBoss IDE 2.0-Beta2 Do not use the IDE, I have no idea if it would have any bearing on your problem or not, but it has not been maintained for over a year. "fabiocsilva

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread fabiocsilva
Somebody would have some ready example of annotation-introduction to order for me? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989893#3989893 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989893 ___

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread fabiocsilva
Nothing... :(:(:( The wiki of JBoss AOP has an example of annotation-introduction. However it did not execute in my pc. I am using JBoss IDE 2.0-Beta2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989883#3989883 Reply to the post : http://www.jboss.com/in

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-29 Thread [EMAIL PROTECTED]
Try changing the @Target of your annotation to ELementType.TYPE. Annotation introductions are compiled in to the bytecode, and if it has the wrong target it will not be recognised. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989652#3989652 Reply to the p

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-28 Thread fabiocsilva
I corrected the last error erasing the folder of build and recriando it. The main problem, however, still persists. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989557#3989557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-28 Thread fabiocsilva
The code not yet is executing. | | SystemRecord.java : | | package util; | | import java.lang.annotation.ElementType; | import java.lang.annotation.Target; | | @Target({ElementType.CONSTRUCTOR}) | public @interface SystemRecord { | | } | | SomeClass.java : :)

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-28 Thread [EMAIL PROTECTED]
Within the annotation-introduction you have a few different "verbs": constructor - introduces annotation onto a constructor method - introduces onto a method field - introduces onto a field class - introduces onto a class What you have there is the same as | package gui.complaints; | | p