home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.xa;
-
- import com.extensibility.app.BaseDocument;
- import com.extensibility.xml.URI;
-
- public class BatchProcessor$SaveAsSchemaCommand implements BatchProcessor.BatchCommand {
- // $FF: synthetic field
- final BatchProcessor this$0;
- URI uri;
- URI asUri;
-
- public BatchProcessor$SaveAsSchemaCommand(BatchProcessor var1, URI var2, URI var3) {
- this.this$0 = var1;
- this.uri = var2;
- this.asUri = var3;
- }
-
- public synchronized boolean doCommand() throws InterruptedException {
- BaseDocument var1 = this.this$0.isDocAddedToDesktop(this.uri);
- if (var1 != null) {
- var1.saveAs(this.asUri);
- }
-
- return true;
- }
- }
-