AbstractReifiedTerm.java from Texai at Krugle
Show AbstractReifiedTerm.java syntax highlighted
/*
* AbstractReifiedTerm.java
*
* Created on October 15, 2006, 10:41 PM
*
* Description: AbstractTerm is a reified term in the Texai logical representation language.
*
* Copyright (C) 2006 Stephen L. Reed.
*
* This program is free software; you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program;
* if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package org.texai.kb.ejb.entity;
import javax.persistence.Entity;
import javax.persistence.Transient;
/**
* Entity class AbstractReifiedTerm
*
*
* @author reed
*/
@Entity
public abstract class AbstractReifiedTerm extends AbstractTerm {
/**
* Determines if a de-serialized file is compatible with this class.
*
* Maintainers must change this value if and only if the new version
* of this class is not compatible with old versions. See Sun docs
* for <a href=http://java.sun.com/products/jdk/1.1/docs/guide
* /serialization/spec/version.doc.html> details. </a>
*
* Not necessary to include in first version of the class, but
* included here as a reminder of its importance.
*/
@Transient
private static final long serialVersionUID = 1L;
/** Creates a new instance of AbstractReifiedTerm. */
public AbstractReifiedTerm() {
super();
}
/** Gets the creator.
*
* @return the creator
*/
public abstract AbstractReifiedTerm getCreator();
/** Gets the creation purpose.
*
* @return the creation purpose
*/
public abstract AbstractReifiedTerm getCreationPurpose();
/** Gets the creation time point.
*
* @return the creation point
*/
public abstract TimePoint getCreationTimePoint();
/** Returns a CycL representation of this object.
*
* @return a CycL representation of this object
*/
public abstract String toCycLString();
}
See more files for this project here