Package fasp.parser.tokenizer

Examples of fasp.parser.tokenizer.LattToken


*
* @author Jeroen Janssen <Jeroen.Janssen@vub.ac.be>
*/
public class LattValParser extends AbstractParser<LattVal> {
  public LattVal parse(TokenState st) throws ParseException {
    LattToken t = (LattToken)new TokenParser(Token.Type.LATTVAL).parse(st);
    Double d = t.getValue();
    return new LattVal(d);
  }
View Full Code Here

TOP

Related Classes of fasp.parser.tokenizer.LattToken

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.