Uses of Interface
org.qdl_lang.vfs.VFSEntry
-
Packages that use VFSEntry Package Description org.qdl_lang.evaluate Evaluators evaluate the built-in functions for QDL as well as perform the usual algebraic operations.org.qdl_lang.scripting This directory is concerned with scripts for use on a server, not general QDL scripts.org.qdl_lang.state Classes that manage the state of an interpreter session.org.qdl_lang.vfs Virtual file systems support as well as implementations of VFSs. -
-
Uses of VFSEntry in org.qdl_lang.evaluate
Methods in org.qdl_lang.evaluate that return VFSEntry Modifier and Type Method Description VFSEntry
AbstractEvaluator. resolveResourceToFile(String resourceName, int type, State state)
This will look at the resource name and decide if it is in a VFS and resolve it against that. -
Uses of VFSEntry in org.qdl_lang.scripting
Classes in org.qdl_lang.scripting that implement VFSEntry Modifier and Type Class Description class
QDLScript
Created by Jeff Gaynor
on 2/4/20 at 5:09 PM -
Uses of VFSEntry in org.qdl_lang.state
Methods in org.qdl_lang.state that return VFSEntry Modifier and Type Method Description VFSEntry
State. getFileFromVFS(String fqName, int type)
-
Uses of VFSEntry in org.qdl_lang.vfs
Classes in org.qdl_lang.vfs that implement VFSEntry Modifier and Type Class Description class
FileEntry
Generic entry for the virtual file system.Methods in org.qdl_lang.vfs that return VFSEntry Modifier and Type Method Description VFSEntry
AbstractVFSFileProvider. get(String path, int type)
VFSEntry
VFSFileProvider. get(String name, int type)
Get the named item.VFSEntry
VFSMemoryFileProvider. get(String path, int type)
VFSEntry
VFSMySQLProvider. get(String path, int type)
VFSEntry
VFSPassThruFileProvider. get(String path, int type)
VFSEntry
VFSZipFileProvider. get(String path, int type)
Methods in org.qdl_lang.vfs with parameters of type VFSEntry Modifier and Type Method Description void
AbstractVFSFileProvider. put(String newPath, VFSEntry entry)
void
AbstractVFSFileProvider. put(VFSEntry entry)
void
VFSDatabase. put(String[] key, VFSEntry fileEntry)
void
VFSFileProvider. put(String newPath, VFSEntry entry)
Add the using the path.void
VFSFileProvider. put(VFSEntry entry)
Put this in the store at its current pathvoid
VFSMemoryFileProvider. put(String newPath, VFSEntry entry)
void
VFSMySQLProvider. put(String path, VFSEntry entry)
void
VFSPassThruFileProvider. put(String path, VFSEntry entry)
void
VFSPassThruFileProvider. put(VFSEntry entry)
void
VFSDatabase. update(String[] key, VFSEntry fileEntry)
-