explanation.java

来自「Semantic Web Ontology Editor」· Java 代码 · 共 48 行

JAVA
48
字号
/* * Created on Feb 24, 2005 * * To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */package org.mindswap.swoop.utils.explain;import java.net.URI;/** * @author Dave * * Explanation data structure.  Stores data relevant to some item referrable by an URI * Every Explanation must have a Name of the object it is explaining, a Description to * explain the object, a URI to refer to the object, and possibly a set of sources where * the description is obtained (can be null). *  * Intended as a non-mutable object. */public class Explanation{	protected URI       myURI = null;	protected String    myName = null;	protected String    myDescription = null;	protected URI    [] mySources = null;		public String getName()	{		return myName;	}	public String getDescription()	{		return myDescription;	}		public URI getURI()	{		return myURI;	}		public URI [] getSources()	{		return mySources;	}}

⌨️ 快捷键说明

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