类 StaticScriptSource
- java.lang.Object
- org.springframework.scripting.support.StaticScriptSource
- 所有已实现的接口:
ScriptSource
public class StaticScriptSource extends Object implements ScriptSource
Static implementation of theScriptSourceinterface, encapsulating a given String that contains the script source text. Supports programmatic updates of the script String.- 从以下版本开始:
- 2.0
- 作者:
- Rob Harrop, Juergen Hoeller
构造器概要
构造器 构造器 说明 StaticScriptSource(String script)Create a new StaticScriptSource for the given script.StaticScriptSource(String script, String className)Create a new StaticScriptSource for the given script.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetScriptAsString()Retrieve the current script source text as String.booleanisModified()Indicate whether the underlying script data has been modified since the last timeScriptSource.getScriptAsString()was called.voidsetScript(String script)Set a fresh script String, overriding the previous script.StringsuggestedClassName()Determine a class name for the underlying script.StringtoString()
构造器详细资料
StaticScriptSource
public StaticScriptSource(String script)
Create a new StaticScriptSource for the given script.- 参数:
script- the script String
StaticScriptSource
public StaticScriptSource(String script, String className)
Create a new StaticScriptSource for the given script.- 参数:
script- the script StringclassName- the suggested class name for the script (may benull)
方法详细资料
setScript
public void setScript(String script)
Set a fresh script String, overriding the previous script.- 参数:
script- the script String
getScriptAsString
public String getScriptAsString()
从接口复制的说明:ScriptSourceRetrieve the current script source text as String.- 指定者:
getScriptAsString在接口中ScriptSource- 返回:
- the script text
isModified
public boolean isModified()
从接口复制的说明:ScriptSourceIndicate whether the underlying script data has been modified since the last timeScriptSource.getScriptAsString()was called. Returnstrueif the script has not been read yet.- 指定者:
isModified在接口中ScriptSource- 返回:
- whether the script data has been modified
suggestedClassName
public String suggestedClassName()
从接口复制的说明:ScriptSourceDetermine a class name for the underlying script.- 指定者:
suggestedClassName在接口中ScriptSource- 返回:
- the suggested class name, or
nullif none available