Class JavaScriptStackSourceImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.javascript.JavaScriptStackSourceImpl
-
- All Implemented Interfaces:
JavaScriptStackSource
public class JavaScriptStackSourceImpl extends Object implements JavaScriptStackSource
-
-
Constructor Summary
Constructors Constructor Description JavaScriptStackSourceImpl(Map<String,JavaScriptStack> configuration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JavaScriptStack
findStack(String name)
Gets a stack by name (ignoring case).JavaScriptStack
findStackForJavaScriptLibrary(Resource resource)
Attempts to find the stack containing the indicated JavaScript library.JavaScriptStack
getStack(String name)
Gets a stack by name (ignoring case).List<String>
getStackNames()
Returns the names of all stacks, in sorted order.
-
-
-
Constructor Detail
-
JavaScriptStackSourceImpl
public JavaScriptStackSourceImpl(Map<String,JavaScriptStack> configuration)
-
-
Method Detail
-
getStack
public JavaScriptStack getStack(String name)
Description copied from interface:JavaScriptStackSource
Gets a stack by name (ignoring case).- Specified by:
getStack
in interfaceJavaScriptStackSource
- Returns:
- named stack
-
findStack
public JavaScriptStack findStack(String name)
Description copied from interface:JavaScriptStackSource
Gets a stack by name (ignoring case).- Specified by:
findStack
in interfaceJavaScriptStackSource
- Returns:
- named stack, or null if not found
-
getStackNames
public List<String> getStackNames()
Description copied from interface:JavaScriptStackSource
Returns the names of all stacks, in sorted order.- Specified by:
getStackNames
in interfaceJavaScriptStackSource
-
findStackForJavaScriptLibrary
public JavaScriptStack findStackForJavaScriptLibrary(Resource resource)
Description copied from interface:JavaScriptStackSource
Attempts to find the stack containing the indicated JavaScript library.- Specified by:
findStackForJavaScriptLibrary
in interfaceJavaScriptStackSource
- Parameters:
resource
- identifies a potential JavaScript Library- Returns:
- the stack if found, or null
- See Also:
JavaScriptStack.getJavaScriptLibraries()
-
-