12 lines
224 B
Java
12 lines
224 B
Java
package org.apache.velocity.runtime;
|
|
|
|
import org.apache.velocity.runtime.parser.Parser;
|
|
|
|
public interface ParserPool {
|
|
Parser get();
|
|
|
|
void initialize(RuntimeServices runtimeServices);
|
|
|
|
void put(Parser parser);
|
|
}
|