java.lang.Objectorg.nlogo.nvm.ExtensionContext
public class ExtensionContext
Constructor Summary | |
---|---|
ExtensionContext(Workspace workspace,
Context context)
|
Method Summary | |
---|---|
String |
attachCurrentDirectory(String path)
Transforms a relative path to an absolute path by prepending the current working directory. |
String |
attachModelDir(String filePath)
Transforms a relative path to a model into an absolute path by prepending the current model directory. |
Agent |
getAgent()
Returns the agent that is currently executing this code. |
BufferedImage |
getDrawing()
Returns the drawing image. ( experimental ) |
org.nlogo.util.MersenneTwisterFast |
getRNG()
This method returns the Random Number Generator for the current Job. |
Context |
nvmContext()
|
void |
runCommand(String source,
boolean waitForFinish)
Runs a command as if it were written in the Command Center. |
Object |
runReporter(String source)
Runs a reporter as if it were written in the Command Center. |
Workspace |
workspace()
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ExtensionContext(Workspace workspace, Context context)
Method Detail |
---|
public Context nvmContext()
public Workspace workspace()
public Agent getAgent()
Context
getAgent
in interface Context
public void runCommand(String source, boolean waitForFinish) throws ExtensionException
Context
runCommand
in interface Context
source
- the source code to runwaitForFinish
- determines whether the method returns
immediately, or waits until the Logo code is done executing
ExtensionException
public Object runReporter(String source) throws ExtensionException
Context
runReporter
in interface Context
source
- the source code to run
ExtensionException
public String attachModelDir(String filePath) throws MalformedURLException
Context
filePath
is an absolute path, it is returned unchanged.
attachModelDir
in interface Context
filePath
- the path to be processed
MalformedURLException
public String attachCurrentDirectory(String path) throws MalformedURLException
Context
filePath
is an absolute path, it is returned unchanged.
The "current working directory" is the current
directory used by NetLogo's file I/O primitives, and can be changed by
the user at run-time using the file-set-current-directory
primitive.
Its initial value is the directory from which the current model was
loaded, or the user's home directory if this is a new model.
attachCurrentDirectory
in interface Context
MalformedURLException
public org.nlogo.util.MersenneTwisterFast getRNG()
Context
getRNG
in interface Context
public BufferedImage getDrawing()
Context
getDrawing
in interface Context