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

📄 ierror.java

📁 A Java web application, based on Struts and Hibernate, that serves as an online running log. Users m
💻 JAVA
字号:
/* @LICENSE_COPYRIGHT@ */
package net.sf.irunninglog.util;

import java.io.Serializable;

/**
 * Interface definition for errors within the application.  This interface
 * must be implemented by any error objects that will be used in conjuntion
 * with <code>DTO</code>s.  The various error-related <code>DTO</code>
 * operations alll require instances of the <code>IError</code> interface.
 *
 * @author <a href="mailto:allan_e_lewis@yahoo.com">Allan Lewis</a>
 * @version $Revision: 1.1.1.1 $ $Date: 2005/06/23 01:49:03 $
 * @since iRunningLog 1.0
 * @see DTO
 */
public interface IError extends Serializable {

    /**
     * Get the error's key.  This method will return the key that uniquely
     * identifies the error.
     *
     * @return The error's key
     */
    String getKey();

    /**
     * Get the error's list of inserts.  This method will return a copy of the
     * list to prevent external classes from modifying the list's values.
     *
     * @return The error's list of inserts
     */
    String [] getInserts();

}

⌨️ 快捷键说明

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