📄 collectionmanagementservice.java
字号:
/*
* CollectionManagementService.java
*
* Created on den 18 juni 2001, 12:20
*/
package org.xmldb.api.modules;
import org.xmldb.api.base.Service;
import org.xmldb.api.base.XMLDBException;
import org.xmldb.api.base.Collection;
/**
*
* @author Kimbro Staken, Per Nyfelt
* @version 0.1
*/
public interface CollectionManagementService extends Service {
/** Create a new basic collection */
Collection createCollection( String name ) throws XMLDBException;
/** Remove the named collection */
void removeCollection( String name ) throws XMLDBException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -