Changeset 2124


Ignore:
Timestamp:
2001-03-07T13:37:36+13:00 (23 years ago)
Author:
say1
Message:

documentation updates

Location:
trunk/java-client
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/TODO

    r2097 r2124  
    10108) change make to $(MAKE) in the makefiles
    11119) comments...
     1210) ...
    1213
     14a) sort out the configure flags in mico so we only get what we need in the ORB
     15b) ...
  • trunk/java-client/org/nzdl/gsdl/ptp/Connection.java

    r2121 r2124  
    4242 * @version $Revision$
    4343 * @see org.nzdl.gsdl.ptp.Node
    44  * @see
    45  * @see
     44 * @see org.nzdl.gsdl.ptp.Poller
     45 * @see org.nzdl.gsdl.ptp.Listener
    4646 *
    4747 */
  • trunk/java-client/org/nzdl/gsdl/ptp/HTTP.java

    r2110 r2124  
    4141 * @author stuart yeates ([email protected])
    4242 * @version $Revision$
    43  * @see
    44  * @see
    45  * @see
    46  *
     43 * @see org.nzdl.gsdl.ptp.Node
     44 * @see org.nzdl.gsdl.ptp.Locator
    4745 */
    4846
  • trunk/java-client/org/nzdl/gsdl/ptp/IOR.java

    r2109 r2124  
    3535
    3636/**
    37  * Class ...
    38  *
    39  * Based on algorithms in ...
     37 * Class IOR represents a CORBA IOR
    4038 *
    4139 * @author stuart yeates ([email protected])
    4240 * @version $Revision$
    43  * @see
    44  * @see
    45  * @see
     41 * @see org.nzdl.gsdl.ptp.Node
     42 * @see org.nzdl.gsdl.ptp.Locator
    4643 *
    4744 */
    4845
    4946class IOR extends Locator{
    50   // TODO
    51   String clean (String str) { return str; } ;
    5247
    53   boolean valid (String str) {
    54     String match = "IOR:";
    55     String first = str.substring(0,match.length());
    56     if (first.compareToIgnoreCase(match) == 0) {
    57       return true;
    58     }
    59     return false;
     48  String IOR = "";
     49
     50  public String toString() {
     51    return "IOR:" + IOR;
    6052  }
    6153
    62   /**
    63    * Tests...
    64    *
    65    *
    66    * @exception java.io.IOException when ...
    67    * @param args the arguments ...
    68    */
     54  IOR() {
     55    IOR = new String();
     56  }
     57  IOR(String str) {
     58    IOR = new String(str);
     59  }
    6960
    70   public static void main(String args[]) throws IOException
    71   {
    72 
    73   }
    7461}
    7562
  • trunk/java-client/org/nzdl/gsdl/util/NzdlHosts.java

    r2098 r2124  
    4747 * @author  George Buchanan ([email protected])
    4848 * @version $Revision$
    49  * @see
    50  * @see
    51  * @see
     49 * @see org.nzdl.gsdl.SimpleClient
     50 * @see org.nzdl.gsdl.SimpleServer
    5251 *
    5352 */
Note: See TracChangeset for help on using the changeset viewer.