This commit was manufactured by cvs2svn to create tag 'R1_0_M4_N20060627'.
diff --git a/plugins/org.eclipse.epf.publishing.ui/src/org/eclipse/epf/publishing/wizards/AbstractPublishingWizard.java b/plugins/org.eclipse.epf.publishing.ui/src/org/eclipse/epf/publishing/wizards/AbstractPublishingWizard.java
new file mode 100755
index 0000000..3d0a316
--- /dev/null
+++ b/plugins/org.eclipse.epf.publishing.ui/src/org/eclipse/epf/publishing/wizards/AbstractPublishingWizard.java
@@ -0,0 +1,42 @@
+//------------------------------------------------------------------------------
+// Copyright (c) 2005, 2006 IBM Corporation and others.
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// which accompanies this distribution, and is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// Contributors:
+// IBM Corporation - initial implementation
+//------------------------------------------------------------------------------
+package org.eclipse.epf.publishing.wizards;
+
+import org.eclipse.epf.publishing.services.PublishOptions;
+import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.jface.wizard.Wizard;
+import org.eclipse.ui.INewWizard;
+import org.eclipse.ui.IWorkbench;
+
+/**
+ * Abstract publishing wizard class. 
+ * use the org.eclipse.epf.publishing.ui.publishers extension point to extend this class 
+ * if you need to customize the publishing ui.
+ * 
+ * @author Jinhua Xi
+ * @since 1.0
+ *
+ */
+public abstract class AbstractPublishingWizard extends Wizard implements INewWizard {
+
+	// The publishing options.
+	protected PublishOptions dataModel = null;
+
+	public AbstractPublishingWizard() {
+		super();
+	}
+	
+	public abstract boolean performFinish();
+
+	public abstract void init(IWorkbench workbench, IStructuredSelection selection);
+	
+	public abstract PublishOptions getPublishOptions();
+}