Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java')
-rw-r--r--org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java b/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java
index 740e2afdb..e9e84ff8d 100644
--- a/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java
+++ b/org.eclipse.core.variables/src/org/eclipse/core/variables/VariablesPlugin.java
@@ -27,13 +27,13 @@ public class VariablesPlugin extends Plugin {
/**
* Status code indicating an unexpected internal error.
*/
- public static final int INTERNAL_ERROR = 120;
-
+ public static final int INTERNAL_ERROR = 120;
+
/**
* Status code indicating a variable reference cycle error.
*/
public static final int REFERENCE_CYCLE_ERROR = 130;
-
+
/**
* The single instance of this plug-in runtime class.
*/
@@ -46,10 +46,10 @@ public class VariablesPlugin extends Plugin {
public static final String PI_CORE_VARIABLES = "org.eclipse.core.variables"; //$NON-NLS-1$
- /**
+ /**
* Constructs an instance of this plug-in runtime class.
* <p>
- * An instance of this plug-in runtime class is automatically created
+ * An instance of this plug-in runtime class is automatically created
* when the facilities provided by the Variables plug-in are required.
* <b>Clients must never explicitly instantiate a plug-in runtime class.</b>
* </p>
@@ -67,16 +67,16 @@ public class VariablesPlugin extends Plugin {
public static VariablesPlugin getDefault() {
return plugin;
}
-
+
/**
* Logs the specified throwable with this plug-in's log.
- *
- * @param t throwable to log
+ *
+ * @param t throwable to log
*/
public static void log(Throwable t) {
log(new Status(IStatus.ERROR, PI_CORE_VARIABLES, INTERNAL_ERROR, "Error logged from Core Variables: ", t)); //$NON-NLS-1$
}
-
+
/**
* Logs the given message with this plug-in's log and the given
* throwable or <code>null</code> if none.
@@ -86,16 +86,16 @@ public class VariablesPlugin extends Plugin {
public static void logMessage(String message, Throwable throwable) {
log(new Status(IStatus.ERROR, getUniqueIdentifier(), INTERNAL_ERROR, message, throwable));
}
-
+
/**
* Logs the specified status with this plug-in's log.
- *
+ *
* @param status status to log
*/
public static void log(IStatus status) {
getDefault().getLog().log(status);
}
-
+
/**
* Convenience method which returns the unique identifier of this plug-in.
* @return the identifier of this plug-in
@@ -103,10 +103,10 @@ public class VariablesPlugin extends Plugin {
public static String getUniqueIdentifier() {
return PI_CORE_VARIABLES;
}
-
+
/**
* Returns the string variable manager.
- *
+ *
* @return the string variable manager
*/
public IStringVariableManager getStringVariableManager() {

Back to the top