org.symbian.tools.mtw.core/src/org/symbian/tools/mtw/core/utilities/ZipApplicationVisitor.java
changeset 459 c278f0c8917f
parent 455 5da55957c779
--- a/org.symbian.tools.mtw.core/src/org/symbian/tools/mtw/core/utilities/ZipApplicationVisitor.java	Thu Jul 29 10:00:34 2010 -0700
+++ b/org.symbian.tools.mtw.core/src/org/symbian/tools/mtw/core/utilities/ZipApplicationVisitor.java	Thu Jul 29 10:51:59 2010 -0700
@@ -32,7 +32,7 @@
 import org.eclipse.core.runtime.IStatus;
 import org.eclipse.core.runtime.Status;
 import org.symbian.tools.mtw.core.MTWCore;
-import org.symbian.tools.mtw.core.runtimes.IPackager;
+import org.symbian.tools.mtw.core.runtimes.IPackagerDelegate;
 
 /**
  * Use this visitor to zip application if the web runtime uses zip archive as application
@@ -43,9 +43,9 @@
 public class ZipApplicationVisitor implements IResourceVisitor {
     private static final int DEFAULT_BUFFER_SIZE = 65536;
     private final ZipOutputStream zipStream;
-    private final IPackager packager;
+    private final IPackagerDelegate packager;
 
-    public ZipApplicationVisitor(ZipOutputStream zipStream, IPackager packager) {
+    public ZipApplicationVisitor(ZipOutputStream zipStream, IPackagerDelegate packager) {
         this.zipStream = zipStream;
         this.packager = packager;
     }