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.
17 lines
339 B
17 lines
339 B
6 years ago
|
package com.fanruan.api.xml.component;
|
||
6 years ago
|
|
||
|
import com.fr.stable.xml.XMLPrintWriter;
|
||
|
import com.fr.stable.xml.XMLableReader;
|
||
|
|
||
6 years ago
|
public abstract class XMLFileManager extends com.fr.file.XMLFileManager {
|
||
|
|
||
6 years ago
|
@Override
|
||
|
public void writeXML(XMLPrintWriter writer) {
|
||
|
|
||
|
}
|
||
|
@Override
|
||
|
public void readXML(XMLableReader reader) {
|
||
6 years ago
|
|
||
6 years ago
|
}
|
||
|
}
|