/plugins/JCalculator/trunk/org/DFish/tools/calculator/helper/DefaultHandler.java
# · Java · 37 lines · 19 code · 10 blank · 8 comment · 0 complexity · 228073727d3b70f55a8d765ff512c4a8 MD5 · raw file
- package org.DFish.tools.calculator.helper;
- public class DefaultHandler implements CalculatorHandler {
-
- public void endFormula() throws Exception {
- //do nothing
- }
-
- public void error(String message) throws Exception {
- //do nothing
- }
-
- public void fatalError(String message) {
- //do nothing
- }
-
- public void operator(CalculatorOperator operator) throws Exception {
- //do nothing
- }
-
- public void startFormula(String formula) throws Exception {
- //do nothing
- }
- public void blank(char c) {
- // do nothing
- }
- public void number(Number n) throws Exception {
- //do nothing
- }
- public void currentPosition(int begin, int end) {
- //do nothing
- }
-
- }