[cleanup] erefactor/EclipseJdt - Remove trailing whitespace - All lines

EclipseJdt cleanup 'RemoveAllTrailingWhitespace' applied by erefactor.

For EclipseJdt see https://www.eclipse.org/eclipse/news/4.18/jdt.php
For erefactor see https://github.com/cal101/erefactor
This commit is contained in:
cal101
2021-02-14 11:33:44 +00:00
parent 4405d7b8f9
commit b76aacdec8
20 changed files with 50 additions and 50 deletions

View File

@@ -13,10 +13,10 @@ import cn.hutool.core.util.ClassUtil;
*
*/
public final class ProxyUtil {
/**
* 使用切面代理对象
*
*
* @param <T> 切面对象类型
* @param target 目标对象
* @param aspectClass 切面对象类
@@ -25,10 +25,10 @@ public final class ProxyUtil {
public static <T> T proxy(T target, Class<? extends Aspect> aspectClass){
return ProxyFactory.createProxy(target, aspectClass);
}
/**
* 使用切面代理对象
*
*
* @param <T> 被代理对象类型
* @param target 被代理对象
* @param aspect 切面对象
@@ -47,8 +47,8 @@ public final class ProxyUtil {
* 3、调用$Proxy0的$Proxy0(InvocationHandler)构造函数 创建$Proxy0的对象并且用interfaces参数遍历其所有接口的方法这些实现方法的实现本质上是通过反射调用被代理对象的方法<br>
* 4、将$Proxy0的实例返回给客户端。 <br>
* 5、当调用代理类的相应方法时相当于调用 {@link InvocationHandler#invoke(Object, java.lang.reflect.Method, Object[])} 方法
*
*
*
*
* @param <T> 被代理对象类型
* @param classloader 被代理类对应的ClassLoader
* @param invocationHandler {@link InvocationHandler} ,被代理类通过实现此接口提供动态代理功能
@@ -59,10 +59,10 @@ public final class ProxyUtil {
public static <T> T newProxyInstance(ClassLoader classloader, InvocationHandler invocationHandler, Class<?>... interfaces) {
return (T) Proxy.newProxyInstance(classloader, interfaces, invocationHandler);
}
/**
* 创建动态代理对象
*
*
* @param <T> 被代理对象类型
* @param invocationHandler {@link InvocationHandler} ,被代理类通过实现此接口提供动态代理功能
* @param interfaces 代理类中需要实现的被代理类的接口方法

View File

@@ -1,6 +1,6 @@
/**
* 切面实现,提供一些基本的切面实现
*
*
* @author looly
*
*/

View File

@@ -1,6 +1,6 @@
/**
* 代理拦截器实现
*
*
* @author looly
*
*/

View File

@@ -1,6 +1,6 @@
/**
* JDK动态代理封装提供非IOC下的切面支持
*
*
* @author looly
*
*/

View File

@@ -6,7 +6,7 @@ import net.sf.cglib.proxy.Enhancer;
/**
* 基于Cglib的切面代理工厂
*
*
* @author looly
*
*/

View File

@@ -6,7 +6,7 @@ import org.springframework.cglib.proxy.Enhancer;
/**
* 基于Spring-cglib的切面代理工厂
*
*
* @author looly
*
*/

View File

@@ -1,6 +1,6 @@
/**
* 代理实现
*
*
* @author looly
*
*/