EchoPoint API - 3.0.0b5
App Webcontainer

echopoint.template
Interface TemplateTextSubstitution

All Superinterfaces:
Serializable
All Known Implementing Classes:
SimpleTemplateTextSubstitution

public interface TemplateTextSubstitution
extends Serializable

This interface is used substitue named "text tags" in the template markup with variable Strings.

A single TemplateTextSubstitution can be used by more than one TemplatePanel. This helps reduce the memory footprint of the template text subsitution. An implementation of this interface must keep the requirement in mind.


Method Summary
 String getSubstitutionText(String substitutionName)
          This method is called to return a String that has been associated with the given substitution name.
 

Method Detail

getSubstitutionText

String getSubstitutionText(String substitutionName)
This method is called to return a String that has been associated with the given substitution name. If the name is unknown, then null should be returned.


EchoPoint API - 3.0.0b5
App Webcontainer