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

📄 datastoreproducer.java

📁 world wind java sdk 源码
💻 JAVA
字号:
/* Copyright (C) 2001, 2008 United States Government as represented by
the Administrator of the National Aeronautics and Space Administration.
All Rights Reserved.
*/
package gov.nasa.worldwind.data;

import gov.nasa.worldwind.avlist.AVList;
import gov.nasa.worldwind.WWObject;

/**
 * @author dcollins
 * @version $Id: DataStoreProducer.java 8321 2009-01-05 17:06:14Z dcollins $
 */
public interface DataStoreProducer extends WWObject
{
    AVList getStoreParameters();

    void setStoreParameters(AVList parameters);

    String getDataSourceDescription();
    
    Iterable<DataSource> getDataSources();

    boolean acceptsDataSource(DataSource dataSource);

    boolean containsDataSource(DataSource dataSource);

    void offerDataSource(DataSource dataSource);

    void offerAllDataSources(java.util.Collection<? extends DataSource> dataSources);

    void removeDataSource(DataSource dataSource);

    void removeAllDataSources();

    void startProduction() throws Exception;

    void stopProduction();

    Iterable<?> getProductionResults();

    void removeProductionState();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -