01: /*
02: * @(#)Constant.java 1.2 04/12/06
03: *
04: * Copyright (c) 2004 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package org.pnuts.xml;
10:
11: public interface Constant {
12: int DOCUMENT_BUILDER_POOLSIZE = 4;
13: int TRANSFORMER_POOLSIZE = 4;
14: int SAX_PARSER_POOLSIZE = 4;
15: }
|