Source code: org/media/mn8/protocol/jabber/xmlparser/States.java
1 /*
2 * $COPYRIGHT$
3 * $Id: States.java,v 1.1 2002/04/09 16:47:45 crow Exp $
4 *
5 * Date Author Changes
6 * APR 08 2002 Szabo Csaba Created
7 */
8 package org.media.mn8.protocol.jabber.xmlparser;
9
10 /**
11 * Class holding the possible states of the XML parser.
12 */
13 public final class States {
14 /** State when the parser is reading the plain text **/
15 public static final int IN_PLAINTEXT = 0;
16
17 /** State when the parser is reading a tag **/
18 public static final int IN_TAG = 1;
19 }