route.java
来自「A Java web application, based on Struts 」· Java 代码 · 共 27 行
JAVA
27 行
/* @LICENSE_COPYRIGHT@ */package net.sf.irunninglog.canonical;/** * Canonical object representing a <em>Route</em>. This class provides a * number of constants which define a loose contract as to what a * <em>Route</em> is within the system. This contract serves as a way to * allow different application layers to understand and interact with * generic data (e.g. data transfer objects). * * @author <a href="mailto:allan_e_lewis@yahoo.com">Allan Lewis</a> * @version $Revision: 1.1.1.1 $ $Date: 2005/06/23 01:48:56 $ * @since iRunningLog 1.0 */public final class Route extends ReferenceData { /** Canonical ID for Route objects. */ public static final String CANONICAL_ID = "Route"; /** Does not expose a constructor. */ private Route() { } /** The value used to identify the Route's <em>comments</em> field. */ public static final String FIELD_COMMENTS = "comments";}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?