home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.app;
-
- public abstract class BaseWindowEdit extends BaseEdit {
- BaseWindow window;
-
- public BaseWindowEdit(BaseWindow var1) {
- super("");
- this.window = var1;
- ((BaseEdit)this).setDocument(var1.getDocument());
- }
-
- public BaseWindowEdit(BaseWindow var1, String var2) {
- super(var2);
- this.window = var1;
- ((BaseEdit)this).setDocument(var1.getDocument());
- }
-
- public BaseWindow getWindow() {
- return this.window;
- }
-
- public void setWindow(BaseWindow var1) {
- this.window = var1;
- }
- }
-