1 /*2 * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).3 * Initial Developer: H2 Group4 */5 package org.h2.command;6 7 import org.h2.engine.Session;8 9 public class ParserInt extends Parser {10 11 public ParserInt(Session session) {12 super(session);13 }14 15 16 }17