You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2001/10/26 12:56:14 UTC

cvs commit: xml-axis/java/test/import_/binding1 ImportBinding1Impl.java

butek       01/10/26 03:56:14

  Added:       java/test/import_/binding1 ImportBinding1Impl.java
  Log:
  Add import test.  Fix emitter and build files to make it work.
  
  Revision  Changes    Path
  1.1                  xml-axis/java/test/import_/binding1/ImportBinding1Impl.java
  
  Index: ImportBinding1Impl.java
  ===================================================================
  /**
   * ImportBindingImpl.java
   *
   * This file was auto-generated from WSDL
   * by the Apache Axis Wsdl2java emitter.
   */
  
  package test.import_.binding1;
  
  import java.rmi.RemoteException;
  
  import test.import_.iface.Import;
  
  import test.import_.types.Address;
  
  public class ImportBinding1Impl implements Import {
      public void addEntry(String key, Address value) throws RemoteException {
      } // addEntry
  
      public Address getAddressFromName(String key) throws RemoteException {
          return new Address();
      } // getAddressFromName
  }