Skip to content

Commit

Permalink
move all classes of the wizards plugin to internal only
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Apr 18, 2014
1 parent 3446100 commit 255d798
Show file tree
Hide file tree
Showing 35 changed files with 76 additions and 77 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ Require-Bundle: org.eclipse.core.resources;bundle-version="3.8.1",
org.eclipse.jdt.ui;bundle-version="3.9.0",
org.eclipse.datatools.connectivity.db.generic.ui;bundle-version="1.0.2",
org.eclipse.datatools.connectivity.ui;bundle-version="1.2.4"
Export-Package: org.jboss.tools.forge.ui.wizard
Bundle-Vendor: %BundleProvider
Bundle-Localization: plugin
Bundle-ActivationPolicy: lazy
Bundle-Activator: org.jboss.tools.forge.ui.wizards.WizardsPlugin
Bundle-Activator: org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin
6 changes: 3 additions & 3 deletions plugins/org.jboss.tools.forge.ui.wizards/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
parentCategory="org.jboss.ide.eclipse.ui.wizards" />
<wizard
category="org.jboss.ide.eclipse.ui.wizards/org.jboss.tools.forge.ui.wizards"
class="org.jboss.tools.forge.ui.wizard.scaffold.ScaffoldWizard"
class="org.jboss.tools.forge.ui.wizards.internal.wizard.scaffold.ScaffoldWizard"
icon="icons/scaffold_ui.gif"
id="org.jboss.tools.forge.ui.wizard.scaffold.entities"
name="Scaffold UI From Entities">
Expand All @@ -21,7 +21,7 @@
</wizard>
<wizard
category="org.jboss.ide.eclipse.ui.wizards/org.jboss.tools.forge.ui.wizards"
class="org.jboss.tools.forge.ui.wizard.rest.RestWizard"
class="org.jboss.tools.forge.ui.wizards.internal.wizard.rest.RestWizard"
icon="icons/gen-rest.gif"
id="org.jboss.tools.forge.ui.wizard.rest"
name="REST Endpoints From Entities">
Expand All @@ -33,7 +33,7 @@
</wizard>
<wizard
category="org.jboss.ide.eclipse.ui.wizards/org.jboss.tools.forge.ui.wizards"
class="org.jboss.tools.forge.ui.wizard.reveng.GenerateEntitiesWizard"
class="org.jboss.tools.forge.ui.wizards.internal.wizard.reveng.GenerateEntitiesWizard"
icon="icons/gen-entity.gif"
id="org.jboss.tools.forge.ui.wizard.reveng.entities"
name="Entities From Tables">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizards;
package org.jboss.tools.forge.ui.wizards.internal;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard;
package org.jboss.tools.forge.ui.wizards.internal.wizard;

import java.lang.reflect.InvocationTargetException;
import java.util.HashMap;
Expand All @@ -18,7 +18,7 @@
import org.eclipse.ui.IWorkbench;
import org.jboss.tools.forge.core.util.ProjectTools;
import org.jboss.tools.forge.ui.util.ForgeHelper;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;

public abstract class AbstractForgeWizard extends Wizard implements IForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard;
package org.jboss.tools.forge.ui.wizards.internal.wizard;

import java.util.Map;

Expand All @@ -7,7 +7,7 @@
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardPage;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;

public abstract class AbstractForgeWizardPage extends WizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard;
package org.jboss.tools.forge.ui.wizards.internal.wizard;

import java.util.Map;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.dialog;
package org.jboss.tools.forge.ui.wizards.internal.wizard.dialog;

import java.util.ArrayList;

Expand All @@ -18,7 +18,7 @@
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.dialogs.ListDialog;
import org.eclipse.ui.model.WorkbenchLabelProvider;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class JPAProjectSelectionDialog extends ListDialog implements ISelectionChangedListener {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.dialog;
package org.jboss.tools.forge.ui.wizards.internal.wizard.dialog;

import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jface.viewers.ISelectionChangedListener;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.entity;
package org.jboss.tools.forge.ui.wizards.internal.wizard.entity;

import java.util.Iterator;

Expand All @@ -7,8 +7,8 @@
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkbench;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class NewEntityWizard extends AbstractForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.entity;
package org.jboss.tools.forge.ui.wizards.internal.wizard.entity;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
Expand All @@ -14,8 +14,8 @@
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class NewEntityWizardPage extends AbstractForgeWizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.field;
package org.jboss.tools.forge.ui.wizards.internal.wizard.field;

import java.util.Iterator;

Expand All @@ -12,9 +12,9 @@
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkbench;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class NewFieldWizard extends AbstractForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.field;
package org.jboss.tools.forge.ui.wizards.internal.wizard.field;

import java.util.Iterator;

Expand All @@ -18,8 +18,8 @@
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizard.dialog.JPAProjectSelectionDialog;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizards.internal.wizard.dialog.JPAProjectSelectionDialog;

public class NewFieldWizardPage extends AbstractForgeWizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.persistence;
package org.jboss.tools.forge.ui.wizards.internal.wizard.persistence;

public enum ContainerType {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.persistence;
package org.jboss.tools.forge.ui.wizards.internal.wizard.persistence;

import java.util.Iterator;

Expand All @@ -7,8 +7,8 @@
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkbench;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class PersistenceSetupWizard extends AbstractForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.persistence;
package org.jboss.tools.forge.ui.wizards.internal.wizard.persistence;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
Expand All @@ -14,8 +14,8 @@
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class PersistenceSetupWizardPage extends AbstractForgeWizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.persistence;
package org.jboss.tools.forge.ui.wizards.internal.wizard.persistence;

public enum ProviderType {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.project;
package org.jboss.tools.forge.ui.wizards.internal.wizard.project;

import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
Expand All @@ -14,8 +14,8 @@
import org.eclipse.m2e.core.project.MavenProjectInfo;
import org.eclipse.m2e.core.project.ProjectImportConfiguration;
import org.eclipse.swt.widgets.Display;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizard;

public class NewProjectWizard extends AbstractForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.project;
package org.jboss.tools.forge.ui.wizards.internal.wizard.project;

import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IStatus;
Expand All @@ -20,9 +20,9 @@
import org.eclipse.swt.widgets.DirectoryDialog;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizard.persistence.ContainerType;
import org.jboss.tools.forge.ui.wizard.persistence.ProviderType;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizards.internal.wizard.persistence.ContainerType;
import org.jboss.tools.forge.ui.wizards.internal.wizard.persistence.ProviderType;

public class NewProjectWizardPage extends AbstractForgeWizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.project;
package org.jboss.tools.forge.ui.wizards.internal.wizard.project;

public enum ProjectType {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.rest;
package org.jboss.tools.forge.ui.wizards.internal.wizard.rest;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.rest;
package org.jboss.tools.forge.ui.wizards.internal.wizard.rest;

import java.util.Iterator;
import java.util.List;
Expand All @@ -8,8 +8,8 @@
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkbench;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class RestWizard extends AbstractForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.rest;
package org.jboss.tools.forge.ui.wizards.internal.wizard.rest;

import java.util.ArrayList;
import java.util.Iterator;
Expand All @@ -18,8 +18,8 @@
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableItem;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class RestWizardPage extends AbstractForgeWizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

public class ConnectionProfileDescriptor {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

import java.util.ArrayList;
import java.util.Properties;

import org.eclipse.datatools.connectivity.ConnectionProfileException;
import org.eclipse.datatools.connectivity.IConnectionProfile;
import org.eclipse.datatools.connectivity.ProfileManager;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;



Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

import java.util.ArrayList;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

import java.util.Iterator;

Expand All @@ -8,8 +8,8 @@
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkbench;
import org.jboss.tools.forge.ui.util.ForgeHelper;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizard;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class GenerateEntitiesWizard extends AbstractForgeWizard {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
Expand Down Expand Up @@ -50,10 +50,10 @@
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.Widget;
import org.eclipse.ui.dialogs.ElementListSelectionDialog;
import org.jboss.tools.forge.ui.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizard.project.NewProjectWizard;
import org.jboss.tools.forge.ui.wizard.util.WizardsHelper;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.wizard.AbstractForgeWizardPage;
import org.jboss.tools.forge.ui.wizards.internal.wizard.project.NewProjectWizard;
import org.jboss.tools.forge.ui.wizards.internal.wizard.util.WizardsHelper;

public class GenerateEntitiesWizardPage extends AbstractForgeWizardPage {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

public enum HibernateDialect {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

import java.lang.reflect.InvocationTargetException;

Expand All @@ -9,7 +9,7 @@
import org.eclipse.swt.widgets.Shell;
import org.jboss.tools.forge.core.runtime.ForgeRuntime;
import org.jboss.tools.forge.ui.util.ForgeHelper;
import org.jboss.tools.forge.ui.wizards.WizardsPlugin;
import org.jboss.tools.forge.ui.wizards.internal.WizardsPlugin;

public class HibernateToolsInstaller {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.jboss.tools.forge.ui.wizard.reveng;
package org.jboss.tools.forge.ui.wizards.internal.wizard.reveng;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.widgets.Shell;
Expand Down

0 comments on commit 255d798

Please sign in to comment.