Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2009-04-08 17:41:02 +0000
committerddunne2009-04-08 17:41:02 +0000
commit269bd7c0318a99564769088537a09337276ba699 (patch)
treeceea20b6fb1bc1f9d519fbdd2c6746075c4297c7 /org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui
parentb7577da9297deb8703e8b12ca547ce3a3e04d30f (diff)
downloadorg.eclipse.osee-269bd7c0318a99564769088537a09337276ba699.tar.gz
org.eclipse.osee-269bd7c0318a99564769088537a09337276ba699.tar.xz
org.eclipse.osee-269bd7c0318a99564769088537a09337276ba699.zip
Removed "Skynet" term from visible display strings
Diffstat (limited to 'org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui')
-rw-r--r--org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/Import/ImportMetaJob.java3
-rw-r--r--org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/export/ExportBranchPage.java13
-rw-r--r--org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/SkynetSpellModifyDictionary.java6
3 files changed, 12 insertions, 10 deletions
diff --git a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/Import/ImportMetaJob.java b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/Import/ImportMetaJob.java
index f42301b7b5a..273fd1e6cdc 100644
--- a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/Import/ImportMetaJob.java
+++ b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/Import/ImportMetaJob.java
@@ -31,11 +31,12 @@ public class ImportMetaJob extends Job {
private final File file;
public ImportMetaJob(File file, Branch branch) {
- super("Importing Skynet Types");
+ super("Importing OSEE Types");
this.branch = branch;
this.file = file;
}
+ @Override
public IStatus run(IProgressMonitor monitor) {
try {
ExcelOseeTypeDataParser importer = new ExcelOseeTypeDataParser(new DbOseeDataTypeProcessor());
diff --git a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/export/ExportBranchPage.java b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/export/ExportBranchPage.java
index 920e12f4b8f..8454fd78951 100644
--- a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/export/ExportBranchPage.java
+++ b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/export/ExportBranchPage.java
@@ -29,7 +29,7 @@ public class ExportBranchPage extends WizardDataTransferPage {
private DirectoryOrFileSelector directoryFileSelector;
@SuppressWarnings("unused")
- private Branch branch;
+ private final Branch branch;
/**
* @param name
@@ -39,8 +39,8 @@ public class ExportBranchPage extends WizardDataTransferPage {
super(name);
this.branch = branch;
- setTitle("Import Skynet types into Define");
- setDescription("Import Skynet types into Define");
+ setTitle("Import OSEE Types");
+ setDescription("Import OSEE Types");
}
/**
@@ -66,8 +66,8 @@ public class ExportBranchPage extends WizardDataTransferPage {
}
/**
- * The <code>WizardResourceImportPage</code> implementation of this <code>Listener</code> method handles all
- * events and enablements for controls on this page. Subclasses may extend.
+ * The <code>WizardResourceImportPage</code> implementation of this <code>Listener</code> method handles all events
+ * and enablements for controls on this page. Subclasses may extend.
*
* @param event Event
*/
@@ -93,6 +93,7 @@ public class ExportBranchPage extends WizardDataTransferPage {
/*
* @see WizardPage#becomesVisible
*/
+ @Override
public void setVisible(boolean visible) {
super.setVisible(visible);
// policy: wizards are not allowed to come up with an error message
@@ -117,7 +118,7 @@ public class ExportBranchPage extends WizardDataTransferPage {
// job.schedule();
} catch (Exception ex) {
ex.printStackTrace();
- ErrorDialog.openError(getShell(), "Define Import Error", "An error has occured while importing a document.",
+ ErrorDialog.openError(getShell(), "OSEE Import Error", "An error has occured while importing a document.",
new Status(IStatus.ERROR, "org.eclipse.osee.framework.jdk.core", IStatus.ERROR,
"Unknown exception occurred in the import", ex));
}
diff --git a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/SkynetSpellModifyDictionary.java b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/SkynetSpellModifyDictionary.java
index 2626cd04537..5226504658e 100644
--- a/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/SkynetSpellModifyDictionary.java
+++ b/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/widgets/SkynetSpellModifyDictionary.java
@@ -32,7 +32,7 @@ public class SkynetSpellModifyDictionary implements XTextSpellModifyDictionary,
private static String ATTRIBUTE_NAME = "Dictionary";
private static Set<String> dictionary;
- private boolean debug = false;
+ private final boolean debug = false;
/*
* (non-Javadoc)
@@ -89,8 +89,8 @@ public class SkynetSpellModifyDictionary implements XTextSpellModifyDictionary,
public boolean isWord(String word) {
loadDictionary(false);
boolean contains = dictionary.contains(word);
- if (debug) System.out.println("Checking SkynetSpell => \"" + word + "\" " + contains);
- if (debug) System.out.println("SkynetSpellDict => " + Collections.toString(",", dictionary));
+ if (debug) System.out.println("Checking OSEESpell => \"" + word + "\" " + contains);
+ if (debug) System.out.println("OSEESpellDict => " + Collections.toString(",", dictionary));
return contains;
}

Back to the top