KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > xml > querying > impl > xtas > object > MappingType


1 package org.exoplatform.services.xml.querying.impl.xtas.object;
2
3 /**
4  * Stores types of mapping for MarshallerFactory.getMarshaller()
5  * @version $Id: MappingType.java 566 2005-01-25 12:50:49Z kravchuk $
6  */

7 public class MappingType {
8     public final static int INTERNAL = 0;
9     public final static int CUSTOM = 1;
10 }
11
Popular Tags