KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > xmleditor > XmlEditorDataType


1 package com.calipso.xmleditor;
2
3 /**
4  *
5  * User: jbassino
6  * Date: 01/07/2004
7  * Time: 13:52:32
8  *
9  */

10 public class XmlEditorDataType {
11   //Esta clase guarda los tipos de datos que existen para la aplicacion.
12

13   public final static int STRING = 0;
14   public final static int TOKENS = 1;
15   public final static int BOOLEAN = 2;
16   public final static int INTEGER = 3;
17 }
18
Popular Tags