1 5 package org.codehaus.aspectwerkz.joinpoint.impl; 6 7 import org.codehaus.aspectwerkz.joinpoint.EnclosingStaticJoinPoint; 8 import org.codehaus.aspectwerkz.joinpoint.Signature; 9 import org.codehaus.aspectwerkz.joinpoint.management.JoinPointType; 10 11 12 20 public class EnclosingStaticJoinPointImpl implements EnclosingStaticJoinPoint { 21 private Signature m_signature; 22 private JoinPointType m_joinPointType; 23 24 public EnclosingStaticJoinPointImpl(Signature signature, JoinPointType jpType) { 25 m_signature = signature; 26 m_joinPointType = jpType; 27 } 28 29 34 public Signature getSignature() { 35 return m_signature; 36 } 37 38 44 public JoinPointType getType() { 45 return m_joinPointType; 46 } 47 } 48 | Popular Tags |