Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java20
1 files changed, 7 insertions, 13 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java
index b40f3416e36..1f42871d211 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java
@@ -33,17 +33,13 @@ public final class TriggerPointAdvisorDescriptor {
/**
* Create a new instance of this class.
*
- * @param element
- * the configuration element
- * @throws IllegalArgumentException
- * thrown if the element is missing an id attribute
+ * @param element the configuration element
+ * @throws IllegalArgumentException thrown if the element is missing an id
+ * attribute
*/
- public TriggerPointAdvisorDescriptor(IConfigurationElement element)
- throws IllegalArgumentException {
+ public TriggerPointAdvisorDescriptor(IConfigurationElement element) throws IllegalArgumentException {
id = element.getAttribute(IWorkbenchRegistryConstants.ATT_ID);
- if (id == null
- || RegistryReader.getClassValue(element,
- IWorkbenchRegistryConstants.ATT_CLASS) == null) {
+ if (id == null || RegistryReader.getClassValue(element, IWorkbenchRegistryConstants.ATT_CLASS) == null) {
throw new IllegalArgumentException();
}
this.element = element;
@@ -62,11 +58,9 @@ public final class TriggerPointAdvisorDescriptor {
* Create the advisor for this descriptor.
*
* @return the advisor
- * @throws CoreException
- * thrown if there is an issue creating the advisor
+ * @throws CoreException thrown if there is an issue creating the advisor
*/
public ITriggerPointAdvisor createAdvisor() throws CoreException {
- return (ITriggerPointAdvisor) element
- .createExecutableExtension(IWorkbenchRegistryConstants.ATT_CLASS);
+ return (ITriggerPointAdvisor) element.createExecutableExtension(IWorkbenchRegistryConstants.ATT_CLASS);
}
}

Back to the top