openllet.aterm.pure.binary.ATermMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openllet-functions Show documentation
Show all versions of openllet-functions Show documentation
Openllet management of abstracts functions
package openllet.aterm.pure.binary;
import openllet.aterm.ATerm;
import openllet.aterm.ATermList;
/**
* Structure that holds information about the state of the contained term.
*
* @author Arnold Lankamp
*/
class ATermMapping
{
public ATerm term;
public int subTermIndex = -1;
public boolean annosDone = false;
/** This is for a ATermList 'nextTerm' optimalization only. */
public ATermList nextPartOfList = null;
ATermMapping(final ATerm term)
{
this.term = term;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy