01: /*
02: * Created on 11-Jan-2006
03: */
04: package uk.org.ponder.saxalizer;
05:
06: public class Constants {
07: /** The name of the special attribute specifying the type of created object
08: * as parsed by SAXalizer. This is either a fully qualified Java class name,
09: * or a nickname as recognised by ClassNameManager.
10: */
11: public static final String TYPE_ATTRIBUTE_NAME = "type";
12:
13: /** The name of the attribute specifying the key, where this element
14: * represents an entry in a Java Map or BeanLocator.
15: */
16: public static final String KEY_ATTRIBUTE_NAME = "key";
17:
18: /** The name of the attribute specifying the type of key object - will
19: * default to java.lang.String where absent.
20: */
21: public static final String KEY_TYPE_ATTRIBUTE_NAME = "key-type";
22: }
|