Package net.sf.okapi.common
Class ExecutionContext
- java.lang.Object
-
- net.sf.okapi.common.BaseContext
-
- net.sf.okapi.common.ExecutionContext
-
- All Implemented Interfaces:
IContext
public class ExecutionContext extends BaseContext
A class to encapsulate information about execution details such as the name of the application, the current UI parent, etc.
-
-
Constructor Summary
Constructors Constructor Description ExecutionContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApplicationName()booleangetIsGui()booleangetIsNoPrompt()ObjectgetUiParent()voidsetApplicationName(String name)voidsetIsNoPrompt(boolean bool)voidsetUiParent(Object uiParent)-
Methods inherited from class net.sf.okapi.common.BaseContext
clearAnnotations, clearProperties, getAnnotation, getBoolean, getInteger, getObject, getProperties, getString, removeProperty, setAnnotation, setBoolean, setInteger, setObject, setString
-
-
-
-
Method Detail
-
getIsGui
public boolean getIsGui()
-
setIsNoPrompt
public void setIsNoPrompt(boolean bool)
-
getIsNoPrompt
public boolean getIsNoPrompt()
-
setUiParent
public void setUiParent(Object uiParent)
-
getUiParent
public Object getUiParent()
-
setApplicationName
public void setApplicationName(String name)
-
getApplicationName
public String getApplicationName()
-
-