1 8 package test.mixindeployment; 9 10 import org.codehaus.aspectwerkz.AspectContext; 11 12 18 public class IntroductionDeploymentAspect { 19 26 public static class MarkerImpl implements Marker { 27 30 private final AspectContext m_info; 31 32 38 public MarkerImpl(final AspectContext info) { 39 m_info = info; 40 } 41 42 public Object getTargetInstance() { 43 return null; 44 } 45 46 public Class getTargetClass() { 47 return null; 48 } 49 } 50 51 57 public static class AnotherMarkerImpl implements Marker { 58 61 private final AspectContext m_info; 62 63 69 public AnotherMarkerImpl(final AspectContext info) { 70 m_info = info; 71 } 72 73 public Object getTargetInstance() { 74 return null; 75 } 76 77 public Class getTargetClass() { 78 return null; 79 } 80 } 81 82 88 public static class HashcodeImpl implements Hashcode { 89 public int hashCode() { 90 return 2; 91 } 92 } 93 } | Popular Tags |