⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 collectionmanagementservice.java

📁 Java的面向对象数据库系统的源代码
💻 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 + -