home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Java / JDesignerPro / Jdp3_0.exe / data1.cab / Program_Files / javax / naming / CannotProceedException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-09  |  1.3 KB  |  54 lines

  1. package javax.naming;
  2.  
  3. import java.util.Hashtable;
  4.  
  5. public class CannotProceedException extends NamingException {
  6.    protected Name remainingNewName;
  7.    protected Hashtable environment;
  8.    protected Name altName;
  9.    protected Context altNameCtx;
  10.  
  11.    public CannotProceedException(String var1) {
  12.       super(var1);
  13.    }
  14.  
  15.    public CannotProceedException() {
  16.    }
  17.  
  18.    public Hashtable getEnvironment() {
  19.       return this.environment;
  20.    }
  21.  
  22.    public void setEnvironment(Hashtable var1) {
  23.       this.environment = var1;
  24.    }
  25.  
  26.    public Name getRemainingNewName() {
  27.       return this.remainingNewName;
  28.    }
  29.  
  30.    public void setRemainingNewName(Name var1) {
  31.       if (var1 != null) {
  32.          this.remainingNewName = (Name)var1.clone();
  33.       } else {
  34.          this.remainingNewName = null;
  35.       }
  36.    }
  37.  
  38.    public Name getAltName() {
  39.       return this.altName;
  40.    }
  41.  
  42.    public void setAltName(Name var1) {
  43.       this.altName = var1;
  44.    }
  45.  
  46.    public Context getAltNameCtx() {
  47.       return this.altNameCtx;
  48.    }
  49.  
  50.    public void setAltNameCtx(Context var1) {
  51.       this.altNameCtx = var1;
  52.    }
  53. }
  54.