Update of /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27954/java/org/objectstyle/wolips/wizards/actions
Modified Files:
OpenD2WApplicationWizard.java
OpenWOSubprojectCreationWizard.java OpenWOComponentWizard.java
OpenWOFrameworkWizard.java OpenWOApplicationWizard.java
OpenEOModelWizard.java OpenJarProjectWizard.java
Added Files:
AbstractOpenWizardAction.java
Log Message:
eclipse 3.2M4 wtp1.0
--- NEW FILE: AbstractOpenWizardAction.java ---
/* ====================================================================
*
* The ObjectStyle Group Software License, Version 1.0
*
* Copyright (c) 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* ObjectStyle Group (http://objectstyle.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "ObjectStyle Group" and "Cayenne"
* must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact [email protected].
*
* 5. Products derived from this software may not be called "ObjectStyle"
* nor may "ObjectStyle" appear in their names without prior written
* permission of the ObjectStyle Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE OBJECTSTYLE GROUP OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the ObjectStyle Group. For more
* information on the ObjectStyle Group, please see
* <http://objectstyle.org/>.
*
*/package org.objectstyle.wolips.wizards.actions;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
/**
* @author uli
*/
public abstract class AbstractOpenWizardAction extends
org.eclipse.jdt.ui.actions.AbstractOpenWizardAction implements
IWorkbenchWindowActionDelegate {
public void dispose() {
// nothing to do
}
public void init(IWorkbenchWindow window) {
// nothing to do
}
public void run(IAction action) {
super.run();
}
public void selectionChanged(IAction action, ISelection selection) {
// nothing to do
}
}
Index: OpenD2WApplicationWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenD2WApplicationWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenD2WApplicationWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenD2WApplicationWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,17 +56,11 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.D2WApplicationWizard;
/**
* @author uli
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
*/
public class OpenD2WApplicationWizard extends AbstractOpenWizardAction {
@@ -74,7 +68,7 @@
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#checkWorkspaceNotEmpty()
*/
protected boolean checkWorkspaceNotEmpty() {
- return true;
+ return false;
}
/**
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#createWizard()
Index: OpenWOSubprojectCreationWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenWOSubprojectCreationWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenWOSubprojectCreationWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenWOSubprojectCreationWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,7 +56,6 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.WOSubprojectCreationWizard;
@@ -71,6 +70,7 @@
protected boolean checkWorkspaceNotEmpty() {
return true;
}
+
/**
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#createWizard()
*/
Index: OpenWOComponentWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenWOComponentWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenWOComponentWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenWOComponentWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,17 +56,11 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.WOComponentCreationWizard;
/**
* @author uli
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
*/
public class OpenWOComponentWizard extends AbstractOpenWizardAction {
Index: OpenWOFrameworkWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenWOFrameworkWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenWOFrameworkWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenWOFrameworkWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,17 +56,11 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.WOFrameworkWizard;
/**
* @author uli
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
*/
public class OpenWOFrameworkWizard extends AbstractOpenWizardAction {
@@ -74,8 +68,9 @@
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#checkWorkspaceNotEmpty()
*/
protected boolean checkWorkspaceNotEmpty() {
- return true;
+ return false;
}
+
/**
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#createWizard()
*/
Index: OpenWOApplicationWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenWOApplicationWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenWOApplicationWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenWOApplicationWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,17 +56,11 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.WOApplicationWizard;
/**
* @author uli
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
*/
public class OpenWOApplicationWizard extends AbstractOpenWizardAction {
@@ -74,7 +68,7 @@
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#checkWorkspaceNotEmpty()
*/
protected boolean checkWorkspaceNotEmpty() {
- return true;
+ return false;
}
/**
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#createWizard()
Index: OpenEOModelWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenEOModelWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenEOModelWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenEOModelWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,17 +56,11 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.EOModelCreationWizard;
/**
* @author uli
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
*/
public class OpenEOModelWizard extends AbstractOpenWizardAction {
Index: OpenJarProjectWizard.java
===================================================================
RCS file: /cvsroot/woproject/woproject/projects/wolips/plugins/org.objectstyle.wolips.wizards/java/org/objectstyle/wolips/wizards/actions/OpenJarProjectWizard.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- OpenJarProjectWizard.java 11 Dec 2004 10:25:42 -0000 1.2
+++ OpenJarProjectWizard.java 26 Dec 2005 13:21:34 -0000 1.3
@@ -2,7 +2,7 @@
*
* The ObjectStyle Group Software License, Version 1.0
*
- * Copyright (c) 2002 The ObjectStyle Group
+ * Copyright (c) 2002 - 2005 The ObjectStyle Group
* and individual authors of the software. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -56,17 +56,11 @@
package org.objectstyle.wolips.wizards.actions;
-import org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction;
import org.eclipse.jface.wizard.Wizard;
import org.objectstyle.wolips.wizards.JarProjectWizard;
/**
* @author uli
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
*/
public class OpenJarProjectWizard extends AbstractOpenWizardAction {
@@ -74,7 +68,7 @@
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#checkWorkspaceNotEmpty()
*/
protected boolean checkWorkspaceNotEmpty() {
- return true;
+ return false;
}
/**
* @see org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction#createWizard()
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.