public class SBMLFileResolver extends SBMLResolver
Constructor and Description |
---|
SBMLFileResolver()   |
SBMLFileResolver(SBMLFileResolver c)   |
Modifier and Type | Method and Description |
---|---|
void |
addAdditionalDir(String dir)   |
void |
clearAdditionalDirs()   |
void |
delete()
Explicitly deletes the underlying native object.
|
SBMLDocument |
resolve(String uri)   |
SBMLDocument |
resolve(String uri,
String baseUri)   |
SBMLUri |
resolveUri(String uri)   |
SBMLUri |
resolveUri(String uri,
String baseUri)   |
void |
setAdditionalDirs(org.sbml.libsbml.SWIGTYPE_p_std__vectorT_std__string_t dirs)   |
public SBMLFileResolver()
public SBMLFileResolver(SBMLFileResolver c)
public void addAdditionalDir(String dir)
public void clearAdditionalDirs()
public void delete()
In general, application software will not need to call this method directly. The Java language binding for libSBML is implemented as a language wrapper that provides a Java interface to libSBML's underlying C++/C code. Some of the Java methods return objects that are linked to objects created not by Java code, but by C++ code. The Java objects wrapped around them will be deleted when the garbage collector invokes the corresponding C++ finalize()
methods for the objects. The finalize()
methods in turn call the SBMLFileResolver.delete()
method on the libSBML object.
This method is exposed in case calling programs want to ensure that the underlying object is freed immediately, and not at some arbitrary time determined by the Java garbage collector. In normal usage, callers do not need to invoke SBMLFileResolver.delete()
themselves.
delete
 in class SBMLResolver
public SBMLDocument resolve(String uri)
resolve
 in class SBMLResolver
public SBMLDocument resolve(String uri, String baseUri)
resolve
 in class SBMLResolver
public SBMLUri resolveUri(String uri)
resolveUri
 in class SBMLResolver
public SBMLUri resolveUri(String uri, String baseUri)
resolveUri
 in class SBMLResolver
public void setAdditionalDirs(org.sbml.libsbml.SWIGTYPE_p_std__vectorT_std__string_t dirs)