blob: 881a25a97a68d373e85313850c5f7436f2f60a04 [file] [log] [blame]
/*
$Id$
Copyright (c) 2004 Jeremy Rayner. All Rights Reserved.
Jeremy Rayner makes no representations or warranties about
the fitness of this software for any particular purpose,
including the implied warranty of merchantability.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.javanicus.bpwj;
import sjm.parse.*;
import sjm.parse.tokens.*;
class ParserFacade {
private Parser parser;
public ParserFacade(Parser parser) {
this.parser = parser;
}
/* utility wrapper for tokenizer and parser */
public Assembly parse(String userInput) {
try {
parseWithoutSwallowingExceptions(userInput);
} catch (TrackSequenceException e) {
System.err.println(e.getMessage());
}
return null;
}
public Assembly parseWithoutSwallowingExceptions(String userInput) {
Assembly in = new TokenAssembly(userInput);
Assembly out = parser.completeMatch(in);
return out;
}
public String toString() {
return parser.toString();
}
}