com.github.ofofs.jca.util.UtilPubWithArgConsTest Maven / Gradle / Ivy
/*
* Copyright (c) 2018. houbinbin Inc.
* jca All rights reserved.
*/
package com.github.ofofs.jca.util;
import com.github.ofofs.jca.annotation.Util;
/**
* util 已经指定有参数构造器
*
* Created: 2018/6/11 下午8:34
* Project: lombok-ex
*
* @author houbinbin
* @version 1.0
* @since JDK 1.7
*/
@Util
public class UtilPubWithArgConsTest {
private String name;
public UtilPubWithArgConsTest(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy