Class FunctorHandler
- java.lang.Object
-
- edu.uiuc.ncsa.security.util.functor.parser.old.FunctorHandler
-
- All Implemented Interfaces:
DefaultHandler
,FunctorHandlerInterface
,LogicBlockHandlerInterface
,LogicBlocksHandlerInterface
,TopHandlerInterface
public class FunctorHandler extends Object implements DefaultHandler
Really a facade for the various handlersCreated by Jeff Gaynor
on 7/13/18 at 10:09 AM
-
-
Constructor Summary
Constructors Constructor Description FunctorHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
endBrace(String name)
void
endBracket(String name)
void
endParenthesis(String name)
void
foundComma(String name)
void
foundDoubleQuotes(String content)
void
reset()
Reset the state of this handler to before the first call.void
startBrace(String name)
void
startBracket(String name)
void
startParenthesis(String name)
-
-
-
Method Detail
-
endParenthesis
public void endParenthesis(String name)
- Specified by:
endParenthesis
in interfaceFunctorHandlerInterface
-
startParenthesis
public void startParenthesis(String name)
- Specified by:
startParenthesis
in interfaceFunctorHandlerInterface
-
foundDoubleQuotes
public void foundDoubleQuotes(String content)
- Specified by:
foundDoubleQuotes
in interfaceFunctorHandlerInterface
-
startBracket
public void startBracket(String name)
- Specified by:
startBracket
in interfaceLogicBlockHandlerInterface
-
endBracket
public void endBracket(String name)
- Specified by:
endBracket
in interfaceLogicBlockHandlerInterface
-
startBrace
public void startBrace(String name)
- Specified by:
startBrace
in interfaceLogicBlocksHandlerInterface
-
endBrace
public void endBrace(String name)
- Specified by:
endBrace
in interfaceLogicBlocksHandlerInterface
-
reset
public void reset()
Description copied from interface:TopHandlerInterface
Reset the state of this handler to before the first call. This allows the handler to be re-used by other components. be sure to get whatever this handler has accumulated before you call this method.- Specified by:
reset
in interfaceTopHandlerInterface
-
foundComma
public void foundComma(String name)
- Specified by:
foundComma
in interfaceTopHandlerInterface
-
-