Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package concert;
  2.  
  3. import org.aspectj.lang.annotation.Aspect;
  4. import org.aspectj.lang.annotation.DeclareParents;
  5.  
  6. @Aspect
  7. public class EncoreableIntroducer {
  8. @DeclareParents( value = "concert.Performance+",
  9. defaultImpl = DefaultEncoreable.class )
  10. public static Encoreable encoreable;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement