Changeset 48 for mymrc

Show
Ignore:
Timestamp:
10/20/07 19:09:14 (5 years ago)
Author:
ciro
Message:

Some more comment issues

Location:
mymrc/trunk/Java-client/src/org/myMRC
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • mymrc/trunk/Java-client/src/org/myMRC/events/Content.java

    r44 r48  
    2121    } 
    2222     
     23    /** Displayed on startup */ 
    2324    public static final String CONT_START =  
    2425            "<form label=\"myMRC 0.1\">" +  
     
    3233            "</form>"; 
    3334     
     35    /** Displayed after disconnecting */ 
    3436    public static final String CONT_START_DISCONNECTED = 
    3537            "<form label=\"myMRC 0.1\">" +  
     
    4345            "</form>"; 
    4446     
     47    /** Settings menu */ 
    4548    public static final String CONT_SETTINGS =  
    4649            "<form label=\"Settings\">" + 
     
    5659            "</form>"; 
    5760     
     61    /** About dialog */ 
    5862    public static final String CONT_ABOUT =  
    5963            "<form label=\"About\">" + 
  • mymrc/trunk/Java-client/src/org/myMRC/events/Opcode.java

    r44 r48  
    3333     * client internal opcode group 09xx 
    3434     */ 
    35     public static final int   IOP_START             =   900; 
    36     public static final int   IOP_ABOUT_DIALOG      =   901; 
    37     public static final int   IOP_PARSE             =   909; // general parse command (-> AlertScreen) 
    38     public static final String OP_PARSELIST         = "0910"; 
    39     public static final int   IOP_PARSELIST         =   910; 
    40     public static final String OP_PARSEFORM         = "0911"; 
    41     public static final int   IOP_PARSEFORM         =   911; 
    42     public static final String OP_PARSECANVAS       = "0912"; 
    43     public static final int   IOP_PARSECANVAS       =   912; 
    44     public static final int   IOP_SETTINGS          =   920; 
    45     public static final int   IOP_SETTINGS_SAVE     =   921; 
    46     public static final int   IOP_CONNECT           =   950; 
    47     public static final int   IOP_DISCONNECT_CONF   =   951; 
    48     public static final int   IOP_DISCONNECT_FORCED =   952; 
    49     public static final int   IOP_DISCONNECT        =   953; 
    50     public static final int   IOP_BT_GET_DEVICES    =   960; 
    51     public static final int   IOP_BT_GET_DEV_CANCEL =   961; 
    52     public static final int   IOP_BT_DEVICE_DETAILS =   962; 
    53     public static final int   IOP_BT_GET_SERVICES   =   963; 
     35    public static final int   IOP_START                 =   900; 
     36    public static final int   IOP_ABOUT_DIALOG          =   901; 
     37    public static final int   IOP_PARSE                 =   909; // general parse command (-> AlertScreen) 
     38    public static final String OP_PARSELIST             = "0910"; 
     39    public static final int   IOP_PARSELIST             =   910; 
     40    public static final String OP_PARSEFORM             = "0911"; 
     41    public static final int   IOP_PARSEFORM             =   911; 
     42    public static final String OP_PARSECANVAS           = "0912"; 
     43    public static final int   IOP_PARSECANVAS           =   912; 
     44    public static final int   IOP_SETTINGS              =   920; 
     45    public static final int   IOP_SETTINGS_SAVE         =   921; 
     46    public static final int   IOP_CONNECT               =   950; 
     47    public static final int   IOP_DISCONNECT_CONF       =   951; 
     48    public static final int   IOP_DISCONNECT_FORCED     =   952; 
     49    public static final int   IOP_DISCONNECT            =   953; 
     50    public static final int   IOP_BT_GET_DEVICES        =   960; 
     51    public static final int   IOP_BT_GET_DEV_CANCEL     =   961; 
     52    public static final int   IOP_BT_DEVICE_DETAILS     =   962; 
     53    public static final int   IOP_BT_GET_SERVICES       =   963; 
    5454    public static final int   IOP_BT_SERVICES_DETAILS   =   964; 
    55     public static final int   IOP_BT_CONNECT        =   965; 
    56     public static final int   IOP_INT_EXIT_CONF     =   998; 
    57     public static final int   IOP_INT_EXIT          =   999; 
     55    public static final int   IOP_BT_CONNECT            =   965; 
     56    public static final int   IOP_INT_EXIT_CONF         =   998; 
     57    public static final int   IOP_INT_EXIT              =   999; 
    5858} 
  • mymrc/trunk/Java-client/src/org/myMRC/settings/Configuration.java

    r44 r48  
    7676     * Adds a configuration value into the internal RecordStore. 
    7777     * Note: you have to keep track of the indices inside the RecordStore! 
     78     *  
     79     * @param value Value for the RecordStore as String. 
    7880     */ 
    7981    private void add(String value) throws Exception {