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 voidendBrace(String name)voidendBracket(String name)voidendParenthesis(String name)voidfoundComma(String name)voidfoundDoubleQuotes(String content)voidreset()Reset the state of this handler to before the first call.voidstartBrace(String name)voidstartBracket(String name)voidstartParenthesis(String name)
-
-
-
Method Detail
-
endParenthesis
public void endParenthesis(String name)
- Specified by:
endParenthesisin interfaceFunctorHandlerInterface
-
startParenthesis
public void startParenthesis(String name)
- Specified by:
startParenthesisin interfaceFunctorHandlerInterface
-
foundDoubleQuotes
public void foundDoubleQuotes(String content)
- Specified by:
foundDoubleQuotesin interfaceFunctorHandlerInterface
-
startBracket
public void startBracket(String name)
- Specified by:
startBracketin interfaceLogicBlockHandlerInterface
-
endBracket
public void endBracket(String name)
- Specified by:
endBracketin interfaceLogicBlockHandlerInterface
-
startBrace
public void startBrace(String name)
- Specified by:
startBracein interfaceLogicBlocksHandlerInterface
-
endBrace
public void endBrace(String name)
- Specified by:
endBracein interfaceLogicBlocksHandlerInterface
-
reset
public void reset()
Description copied from interface:TopHandlerInterfaceReset 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:
resetin interfaceTopHandlerInterface
-
foundComma
public void foundComma(String name)
- Specified by:
foundCommain interfaceTopHandlerInterface
-
-