KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sync4j > framework > core > DevTyp


1 /**
2  * Copyright (C) 2003-2005 Funambol
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */

18
19
20 package sync4j.framework.core;
21
22 /**
23   * This class declares constants that correspond to values for
24   * the <DevTyp> element in SyncML devinf DTD
25   * <br>
26   * <br>
27   * The constructor is private because developers do not
28   * need to construct instances of this class.
29   *
30   * @author Stefano Fornari @ Funambol
31   * @see DevInf
32   *
33   * @version $Id: DevTyp.java,v 1.3 2005/03/02 20:57:37 harrie Exp $
34   */

35 public final class DevTyp {
36     // --------------------------------------------------------------- Constants
37
public static final String JavaDoc PAGER = "pager";
38     public static final String JavaDoc HANDHELD = "handheld";
39     public static final String JavaDoc PDA = "pda";
40     public static final String JavaDoc PHONE = "phone";
41     public static final String JavaDoc SMARTPHONE = "smartphone";
42     public static final String JavaDoc SERVER = "server";
43     public static final String JavaDoc WORKSTATION = "workstation";
44
45     private DevTyp() {}
46
47 }
Popular Tags