Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.eef.edit/src-gen/org/eclipse/eef/provider/EEFHyperlinkConditionalStyleItemProvider.java')
-rw-r--r--plugins/org.eclipse.eef.edit/src-gen/org/eclipse/eef/provider/EEFHyperlinkConditionalStyleItemProvider.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.eef.edit/src-gen/org/eclipse/eef/provider/EEFHyperlinkConditionalStyleItemProvider.java b/plugins/org.eclipse.eef.edit/src-gen/org/eclipse/eef/provider/EEFHyperlinkConditionalStyleItemProvider.java
index 2d9005c34..377177ec0 100644
--- a/plugins/org.eclipse.eef.edit/src-gen/org/eclipse/eef/provider/EEFHyperlinkConditionalStyleItemProvider.java
+++ b/plugins/org.eclipse.eef.edit/src-gen/org/eclipse/eef/provider/EEFHyperlinkConditionalStyleItemProvider.java
@@ -108,8 +108,8 @@ public class EEFHyperlinkConditionalStyleItemProvider extends EEFConditionalStyl
@Override
public String getText(Object object) {
String label = ((EEFHyperlinkConditionalStyle) object).getPreconditionExpression();
- return label == null || label.length() == 0 ? getString("_UI_EEFHyperlinkConditionalStyle_type") : //$NON-NLS-1$
- getString("_UI_EEFHyperlinkConditionalStyle_type") + " " + label; //$NON-NLS-1$ //$NON-NLS-2$
+ return label == null || label.length() == 0 ? getString("_UI_EEFHyperlinkConditionalStyle_type") //$NON-NLS-1$
+ : getString("_UI_EEFHyperlinkConditionalStyle_type") + " " + label; //$NON-NLS-1$ //$NON-NLS-2$
}
/**
@@ -141,8 +141,8 @@ public class EEFHyperlinkConditionalStyleItemProvider extends EEFConditionalStyl
protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
super.collectNewChildDescriptors(newChildDescriptors, object);
- newChildDescriptors.add(createChildParameter(EefPackage.Literals.EEF_HYPERLINK_CONDITIONAL_STYLE__STYLE,
- EefFactory.eINSTANCE.createEEFHyperlinkStyle()));
+ newChildDescriptors.add(
+ createChildParameter(EefPackage.Literals.EEF_HYPERLINK_CONDITIONAL_STYLE__STYLE, EefFactory.eINSTANCE.createEEFHyperlinkStyle()));
}
}

Back to the top