|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ScriptSource | |
---|---|
org.springframework.scripting | Core interfaces for Spring's scripting support. |
org.springframework.scripting.bsh | Package providing integration of BeanShell into Spring's scripting infrastructure. |
org.springframework.scripting.groovy | Package providing integration of Groovy into Spring's scripting infrastructure. |
org.springframework.scripting.jruby | Package providing integration of JRuby into Spring's scripting infrastructure. |
org.springframework.scripting.support | Support classes for Spring's scripting package. |
Uses of ScriptSource in org.springframework.scripting |
---|
Methods in org.springframework.scripting with parameters of type ScriptSource | |
---|---|
Object |
ScriptFactory.getScriptedObject(ScriptSource actualScriptSource,
Class[] actualInterfaces)
Factory method for creating a scripted Java object. |
Uses of ScriptSource in org.springframework.scripting.bsh |
---|
Methods in org.springframework.scripting.bsh with parameters of type ScriptSource | |
---|---|
Object |
BshScriptFactory.getScriptedObject(ScriptSource actualScriptSource,
Class[] actualInterfaces)
Load and parse the BeanShell script via BshScriptUtils . |
Uses of ScriptSource in org.springframework.scripting.groovy |
---|
Methods in org.springframework.scripting.groovy with parameters of type ScriptSource | |
---|---|
Object |
GroovyScriptFactory.getScriptedObject(ScriptSource actualScriptSource,
Class[] actualInterfaces)
Loads and parses the Groovy script via the GroovyClassLoader. |
Uses of ScriptSource in org.springframework.scripting.jruby |
---|
Methods in org.springframework.scripting.jruby with parameters of type ScriptSource | |
---|---|
Object |
JRubyScriptFactory.getScriptedObject(ScriptSource actualScriptSource,
Class[] actualInterfaces)
Load and parse the JRuby script via JRubyScriptUtils. |
Uses of ScriptSource in org.springframework.scripting.support |
---|
Classes in org.springframework.scripting.support that implement ScriptSource | |
---|---|
class |
ResourceScriptSource
ScriptSource implementation based on Spring's Resource abstraction. |
class |
StaticScriptSource
Static implementation of the ScriptSource interface,
encapsulating a given String that contains the script
source text. |
Methods in org.springframework.scripting.support that return ScriptSource | |
---|---|
protected ScriptSource |
ScriptFactoryPostProcessor.convertToScriptSource(String scriptSourceLocator,
ResourceLoader resourceLoader)
Convert the given script source locator to a ScriptSource instance. |
Methods in org.springframework.scripting.support with parameters of type ScriptSource | |
---|---|
protected RootBeanDefinition |
ScriptFactoryPostProcessor.createScriptedObjectBeanDefinition(RootBeanDefinition bd,
String scriptFactoryBeanName,
ScriptSource scriptSource,
Class[] interfaces)
Create a bean definition for the scripted object, based on the given script definition, extracting the definition data that is relevant for the scripted object (that is, everything but bean class and constructor arguments). |
Constructors in org.springframework.scripting.support with parameters of type ScriptSource | |
---|---|
RefreshableScriptTargetSource(BeanFactory beanFactory,
String beanName,
ScriptSource scriptSource)
Create a new RefreshableScriptTargetSource. |
|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |