Changeset 2066 for trunk/java-client/org


Ignore:
Timestamp:
2001-02-24T15:13:12+13:00 (23 years ago)
Author:
say1
Message:

put the SimpleClient in the package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/SimpleClient.java

    r2055 r2066  
     1/*
     2 *    SimpleClient.java
     3 *    Copyright (C) 2001 New Zealand Digital Library Project
     4 *
     5 *    This program is free software; you can redistribute it and/or modify
     6 *    it under the terms of the GNU General Public License as published by
     7 *    the Free Software Foundation; either version 2 of the License, or
     8 *    (at your option) any later version.
     9 *
     10 *    This program is distributed in the hope that it will be useful,
     11 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 *    GNU General Public License for more details.
     14 *
     15 *    You should have received a copy of the GNU General Public License
     16 *    along with this program; if not, write to the Free Software
     17 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
     18 */
     19
     20// the package we're in
     21package org.nzdl;
     22
     23// classes and packages we're importing ...
     24import java.util.Set;
     25import java.util.Map;
     26import java.util.ListIterator;
     27import java.util.Iterator;
     28import java.util.List;
     29import org.nzdl.service.NzdlCollectionInfo;
     30import org.nzdl.service.NzdlQuery;
     31import org.nzdl.service.NzdlRequest;
     32import org.nzdl.service.NzdlResponse;
     33import org.nzdl.service.NzdlResultSet;
     34import org.nzdl.service.NzdlService;
     35import org.nzdl.service.NzdlServiceImpl;
    136
    237
    3 import java.util.*;
    4 import java.text.*; // for date processing
    5 import javax.swing.tree.*;
    6 import org.nzdl.service.*;
    7 
     38/**
     39 * Class SimpleClient
     40 *
     41 * A class to test the workings of Corba interface from the client side.
     42 *
     43 * @author Dave Nichol   ([email protected])
     44 * @author Gordon Paynter ([email protected])
     45 * @author stuart yeates ([email protected])
     46 * @version $Revision$
     47 * @see org.nzdl.service.NzdlCollectionInfo;
     48 * @see org.nzdl.service.NzdlQuery;
     49 * @see org.nzdl.service.NzdlRequest;
     50 * @see org.nzdl.service.NzdlResponse;
     51 * @see org.nzdl.service.NzdlResultSet;
     52 * @see org.nzdl.service.NzdlService;
     53 * @see org.nzdl.service.NzdlServiceImpl;
     54 */
    855
    956public class SimpleClient {
Note: See TracChangeset for help on using the changeset viewer.