All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jpl.fli.PointerHolder Maven / Gradle / Ivy

Go to download

Sigma knowledge engineering system is an system for developing, viewing and debugging theories in first order logic. It works with Knowledge Interchange Format (KIF) and is optimized for the Suggested Upper Merged Ontology (SUMO) www.ontologyportal.org.

The newest version!
/*This code is copyrighted by Teknowledge (c) 2003.
It is released underthe GNU Public License .
Users ofthis code also consent, by use of this code, to credit Teknowledge in any
writings, briefings,publications, presentations, or other representations of any
software which incorporates, builds on, or uses this code.*/ 

 
package jpl.fli;



//----------------------------------------------------------------------/
// PointerHolder
/**
 * A PointerHolder is a trivial extension of a LongHolder.  This is sort of
 * a no-no in Java, as the long value stored herein is sometimes a
 * machine address.  (Don't tell Sun.)
 * 
 * 
* Copyright (C) 1998 Fred Dushin

* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version.

* * This library 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 Library Public License for more details.

*


* @author Fred Dushin * @version $Revision: 1.1.1.1 $ */ // Implementation notes: // There could be issues in the future with signedness, since Java // does not have an unsigned type; make sure not to do any arithmetic // with the stored value. //----------------------------------------------------------------------/ public class PointerHolder extends LongHolder { } //345678901234567890123456789012346578901234567890123456789012345678901234567890




© 2015 - 2024 Weber Informatics LLC | Privacy Policy