blob: 94e7036edecb446224655886f5d5067d385b9100 [file] [log] [blame]
// Copyright 2004 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry.script;
import java.util.Map;
import org.apache.tapestry.ILocation;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.IResourceLocation;
import org.apache.tapestry.IScript;
import org.apache.tapestry.IScriptProcessor;
/**
* A top level container for a number of {@link IScriptToken script tokens}.
*
* @author Howard Lewis Ship
* @version $Id$
* @since 0.2.9
*
**/
public class ParsedScript extends AbstractToken implements IScript
{
private IResourceLocation _scriptLocation;
public ParsedScript(ILocation location)
{
super(location);
_scriptLocation = location.getResourceLocation();
}
public IResourceLocation getScriptLocation()
{
return _scriptLocation;
}
/**
* Creates the {@link ScriptSession} and invokes
* {@link org.apache.tapestry.script.AbstractToken#writeChildren(java.lang.StringBuffer, org.apache.tapestry.script.ScriptSession)}.
*/
public void execute(IRequestCycle cycle, IScriptProcessor processor, Map symbols)
{
ScriptSession session = new ScriptSession(_scriptLocation, cycle, processor, symbols);
writeChildren(null, session);
}
/**
* Does nothing; never invoked.
*/
public void write(StringBuffer buffer, ScriptSession session)
{
}
}