exceptionreport.java
来自「world wind java sdk 源码」· Java 代码 · 共 42 行
JAVA
42 行
/*
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.applications.gio.ows;
import java.util.Collection;
/**
* @author dcollins
* @version $Id: ExceptionReport.java 5465 2008-06-24 00:17:03Z dcollins $
*/
public interface ExceptionReport extends Iterable<ExceptionType>
{
int getExceptionCount();
int getIndex(ExceptionType e);
ExceptionType getException(int index);
void setException(int index, ExceptionType e);
void addException(int index, ExceptionType e);
void addException(ExceptionType e);
void addExceptions(Collection<? extends ExceptionType> c);
void removeException(int index);
void clearExceptions();
String getVersion();
void setVersion(String version);
String getLang();
void setLang(String lang);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?