forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
559 B
23 lines
559 B
5 years ago
|
package com.fanruan.api.conf.impl.xml;
|
||
5 years ago
|
|
||
|
import com.fr.stable.xml.XMLable;
|
||
|
|
||
|
/**
|
||
|
* @author Lucian.Chen
|
||
|
* @version 10.0
|
||
|
* Created by Lucian.Chen on 2020/3/23
|
||
|
*/
|
||
|
public class XmlConf<T extends XMLable> extends com.fr.config.holder.impl.xml.XmlConf<XMLable> {
|
||
|
public XmlConf(String s, XMLable xmLable, Class aClass) {
|
||
|
super(s, xmLable, aClass);
|
||
|
}
|
||
|
|
||
|
public XmlConf(XMLable xmLable, Class aClass) {
|
||
|
super(xmLable, aClass);
|
||
|
}
|
||
|
|
||
|
public XmlConf(XMLable xmLable, Class aClass, String s) {
|
||
|
super(xmLable, aClass, s);
|
||
|
}
|
||
|
}
|