Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-08-29 05:02:11 +0000
committerrbrooks2010-08-29 05:02:11 +0000
commit5a4058affbff23e1fad7c559eeb691161ea94b57 (patch)
tree709ca8587ec038ecdd4bfbcaff50bb6379e2fa6a /plugins/org.eclipse.osee.framework.ui.service.control
parentc850774504ad977892dfece2dc330ab769b234f1 (diff)
downloadorg.eclipse.osee-5a4058affbff23e1fad7c559eeb691161ea94b57.tar.gz
org.eclipse.osee-5a4058affbff23e1fad7c559eeb691161ea94b57.tar.xz
org.eclipse.osee-5a4058affbff23e1fad7c559eeb691161ea94b57.zip
Eclipse source cleanup and format
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.service.control')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/SecureRemoteAccess.java3
-rw-r--r--plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/EclipseApplicationFormatter.java10
-rw-r--r--plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/ExecutionCommandFormatter.java8
3 files changed, 14 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/SecureRemoteAccess.java b/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/SecureRemoteAccess.java
index d9e4e385651..7a4c3c2492f 100644
--- a/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/SecureRemoteAccess.java
+++ b/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/SecureRemoteAccess.java
@@ -131,7 +131,8 @@ public class SecureRemoteAccess {
Shell shell = PlatformUI.getWorkbench().getDisplay().getActiveShell();
MessageDialog dialog =
new MessageDialog(shell, "Warning", null, message, MessageDialog.WARNING, new String[] {
- IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL}, 0);
+ IDialogConstants.YES_LABEL,
+ IDialogConstants.NO_LABEL}, 0);
return dialog.open() == 0;
}
diff --git a/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/EclipseApplicationFormatter.java b/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/EclipseApplicationFormatter.java
index 5413a2fb32e..41b77d34bca 100644
--- a/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/EclipseApplicationFormatter.java
+++ b/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/EclipseApplicationFormatter.java
@@ -24,8 +24,14 @@ public class EclipseApplicationFormatter extends ExecutionCommandFormatter {
// "#ECLIPSE_INSTALL_HOME#" + (Lib.isWindows() ? "\\eclipse.exe" : "/eclipse"),
// "org.eclipse.core.launcher.Main", "-application", "#APPLICATION_NAME#", "#APPLICATION_ARGS#"},
// EXEC_SEPARATOR);
- private final String baseExecString = StringUtils.join(new String[] {"#ECLIPSE_INSTALL_HOME#", "-nosplash",
- "-application", "#APPLICATION_NAME#", "#APPLICATION_ARGS#", "-vmargs", "#JVM_ARGS#"}, ServiceItem.EXEC_SEPARATOR);
+ private final String baseExecString = StringUtils.join(new String[] {
+ "#ECLIPSE_INSTALL_HOME#",
+ "-nosplash",
+ "-application",
+ "#APPLICATION_NAME#",
+ "#APPLICATION_ARGS#",
+ "-vmargs",
+ "#JVM_ARGS#"}, ServiceItem.EXEC_SEPARATOR);
private final String applicationName;
diff --git a/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/ExecutionCommandFormatter.java b/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/ExecutionCommandFormatter.java
index 4cd8c0e36b8..579f9fa601b 100644
--- a/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/ExecutionCommandFormatter.java
+++ b/plugins/org.eclipse.osee.framework.ui.service.control/src/org/eclipse/osee/framework/ui/service/control/wizards/launcher/data/ExecutionCommandFormatter.java
@@ -37,8 +37,8 @@ abstract class ExecutionCommandFormatter {
String applicationArgsString = "";
if (applicationArgs.size() > 0) {
applicationArgsString =
- ServiceItem.EXEC_SEPARATOR + org.eclipse.osee.framework.jdk.core.util.Collections.toString(ServiceItem.EXEC_SEPARATOR,
- applicationArgs);
+ ServiceItem.EXEC_SEPARATOR + org.eclipse.osee.framework.jdk.core.util.Collections.toString(
+ ServiceItem.EXEC_SEPARATOR, applicationArgs);
}
return applicationArgsString;
}
@@ -47,8 +47,8 @@ abstract class ExecutionCommandFormatter {
String jvmArgsString = "";
if (jvmArgs.size() > 0) {
jvmArgsString =
- ServiceItem.EXEC_SEPARATOR + org.eclipse.osee.framework.jdk.core.util.Collections.toString(ServiceItem.EXEC_SEPARATOR,
- jvmArgs);
+ ServiceItem.EXEC_SEPARATOR + org.eclipse.osee.framework.jdk.core.util.Collections.toString(
+ ServiceItem.EXEC_SEPARATOR, jvmArgs);
}
return jvmArgsString;
}

Back to the top