org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/internal/deployment/DefaultDeploymentTypePresentation.java
changeset 460 c0bff5ed874c
parent 457 f1087591ff71
--- a/org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/internal/deployment/DefaultDeploymentTypePresentation.java	Thu Jul 29 10:51:59 2010 -0700
+++ b/org.symbian.tools.mtw.ui/src/org/symbian/tools/mtw/internal/deployment/DefaultDeploymentTypePresentation.java	Thu Jul 29 15:59:01 2010 -0700
@@ -18,7 +18,8 @@
  */
 package org.symbian.tools.mtw.internal.deployment;
 
-import org.eclipse.jface.wizard.IWizardPage;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.widgets.Composite;
 import org.eclipse.swt.widgets.Control;
@@ -29,7 +30,7 @@
 public class DefaultDeploymentTypePresentation implements ITargetDetailsPane {
     private Text text;
 
-    public void init(IWizardPage page) {
+    public void init(Context page) {
     }
 
     public void setTarget(IDeploymentTarget target) {
@@ -43,4 +44,8 @@
     public Control getControl() {
         return text;
     }
+
+    public IStatus validate() {
+        return Status.OK_STATUS;
+    }
 }