Interface ASTManager
-
- All Superinterfaces:
ApplicationComponent
,SettingsOwner
- All Known Implementing Classes:
ASTManagerImpl
public interface ASTManager extends ApplicationComponent, SettingsOwner
Manages a compilation unit forSourceEditorController
.- Since:
- 6.0.0
- Author:
- Clément Fournier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.reactfx.value.Val<java.lang.ClassLoader>
classLoaderProperty()
org.reactfx.value.Val<net.sourceforge.pmd.lang.ast.Node>
compilationUnitProperty()
org.reactfx.value.Val<ParseAbortedException>
currentExceptionProperty()
java.lang.String
getSourceCode()
org.reactfx.value.Val<net.sourceforge.pmd.lang.LanguageVersion>
languageVersionProperty()
void
setSourceCode(java.lang.String sourceCode)
org.reactfx.value.Val<java.lang.String>
sourceCodeProperty()
-
Methods inherited from interface net.sourceforge.pmd.util.fxdesigner.app.ApplicationComponent
getDebugName, getDesignerRoot, getGlobalLanguageVersion, getLogCategory, getLogger, getMainStage, getService, isDeveloperMode, logInternalDebugInfo, logInternalDebugInfo, logInternalException, logUserException, raiseParsableSourceFlag, raiseParsableXPathFlag
-
Methods inherited from interface net.sourceforge.pmd.util.fxdesigner.util.beans.SettingsOwner
getChildrenSettingsNodes
-
-
-
-
Method Detail
-
sourceCodeProperty
org.reactfx.value.Val<java.lang.String> sourceCodeProperty()
-
getSourceCode
java.lang.String getSourceCode()
-
setSourceCode
void setSourceCode(java.lang.String sourceCode)
-
languageVersionProperty
org.reactfx.value.Val<net.sourceforge.pmd.lang.LanguageVersion> languageVersionProperty()
-
compilationUnitProperty
org.reactfx.value.Val<net.sourceforge.pmd.lang.ast.Node> compilationUnitProperty()
-
classLoaderProperty
org.reactfx.value.Val<java.lang.ClassLoader> classLoaderProperty()
-
currentExceptionProperty
org.reactfx.value.Val<ParseAbortedException> currentExceptionProperty()
-
-