1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the docs/licenses/apache-1.1.txt file. 7 */ 8 // This file is pulled from package org.apache.avalon.excalibur.cli Excalibur 9 // version 4.1 (Jan 30, 2002). Only the package name has been changed. 10 package org.jboss.axis.utils; 11 12 /** 13 * ParserControl is used to control particular behaviour of the parser. 14 * 15 * @author <a HREF="mailto:peter@apache.org">Peter Donald</a> 16 * @since 4.0 17 */ 18 public interface ParserControl 19 { 20 boolean isFinished(int lastOptionCode); 21 } 22