Java Aspectj Usage type(final JoinPoint joinPoint)

Here you can find the source of type(final JoinPoint joinPoint)

Description

type

License

Open Source License

Declaration

public static Class<?> type(final JoinPoint joinPoint) 

Method Source Code

//package com.java2s;

import org.aspectj.lang.JoinPoint;

public class Main {
    public static Class<?> type(final JoinPoint joinPoint) {
        return joinPoint.getTarget().getClass();
    }/*w ww .  ja  v a2 s  .c  o  m*/
}

Related

  1. renderArgs(JoinPoint jp)
  2. renderJoinPoint(JoinPoint jp)
  3. resolveFileName(final String fileName)
  4. setSourceLine(InstructionHandle ih, int lineNumber)
  5. strip(String[] src, String[] toStrip)
  6. typeName(final JoinPoint joinPoint)
  7. unWrapJoinPoint(final JoinPoint point)