From d98116b5b376f18b6cf626ba4158a35fe9a4a64e Mon Sep 17 00:00:00 2001 From: Quentin Le Menez Date: Tue, 9 Jan 2018 11:09:46 +0100 Subject: Bug 515367 - [releng] Uniformization of the end of lines to Unix standard - Format the EOL of all the files matched by: grep -rIUs . | xargs -Ifile dos2unix -k 'file' Change-Id: I5c41d540a9a67b50de9b912ab35e16cc9a912961 Signed-off-by: Quentin Le Menez --- .../property/name/GetCaseQueryNameWidget.java | 136 ++++++++++----------- 1 file changed, 68 insertions(+), 68 deletions(-) (limited to 'plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/util/widget/property/name/GetCaseQueryNameWidget.java') diff --git a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/util/widget/property/name/GetCaseQueryNameWidget.java b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/util/widget/property/name/GetCaseQueryNameWidget.java index 412b97f2aba..a562162ebb0 100644 --- a/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/util/widget/property/name/GetCaseQueryNameWidget.java +++ b/plugins/facet/org.eclipse.papyrus.emf.facet.custom.sdk.ui/src/org/eclipse/papyrus/emf/facet/custom/sdk/ui/internal/util/widget/property/name/GetCaseQueryNameWidget.java @@ -1,68 +1,68 @@ -/** - * Copyright (c) 2012 Mia-Software. - * - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors - * Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors - */ -package org.eclipse.papyrus.emf.facet.custom.sdk.ui.internal.util.widget.property.name; - -import org.eclipse.emf.ecore.ETypedElement; -import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; -import org.eclipse.papyrus.emf.facet.custom.sdk.ui.internal.Messages; -import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.util.widget.component.properties.name.AbstractPrintElementWidget; -import org.eclipse.papyrus.emf.facet.util.ui.utils.PropertyElement2; -import org.eclipse.swt.widgets.Composite; - -/** - * Display a textfield with the query name on it. - */ -public class GetCaseQueryNameWidget extends - AbstractPrintElementWidget { - - /** - * Constructor. - * - * @param parent - * the parent of this composite. - * @param propertyElement - * the property element that be edited with this composite. - */ - public GetCaseQueryNameWidget(final Composite parent, - final PropertyElement2 propertyElement) { - super(parent, propertyElement); - } - - @Override - protected String getLabel() { - return Messages.Query_case_name; - } - - @Override - protected String getErrorMessage() { - return null; - } - - @Override - protected String getTextFieldInitialText() { - String result = "The object node cusomization"; //$NON-NLS-1$ - final ETypedElementCase eTECase = this.getPropertyElement().getValue2(); - final ETypedElement eTypedElement = eTECase.getCase(); - if (eTypedElement != null) { - result = eTypedElement.getName(); - } - return result; - } - - @Override - public void notifyChanged() { - // Nothing. - } - - -} +/** + * Copyright (c) 2012 Mia-Software. + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors + * Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors + */ +package org.eclipse.papyrus.emf.facet.custom.sdk.ui.internal.util.widget.property.name; + +import org.eclipse.emf.ecore.ETypedElement; +import org.eclipse.papyrus.emf.facet.custom.metamodel.v0_2_0.custom.ETypedElementCase; +import org.eclipse.papyrus.emf.facet.custom.sdk.ui.internal.Messages; +import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.util.widget.component.properties.name.AbstractPrintElementWidget; +import org.eclipse.papyrus.emf.facet.util.ui.utils.PropertyElement2; +import org.eclipse.swt.widgets.Composite; + +/** + * Display a textfield with the query name on it. + */ +public class GetCaseQueryNameWidget extends + AbstractPrintElementWidget { + + /** + * Constructor. + * + * @param parent + * the parent of this composite. + * @param propertyElement + * the property element that be edited with this composite. + */ + public GetCaseQueryNameWidget(final Composite parent, + final PropertyElement2 propertyElement) { + super(parent, propertyElement); + } + + @Override + protected String getLabel() { + return Messages.Query_case_name; + } + + @Override + protected String getErrorMessage() { + return null; + } + + @Override + protected String getTextFieldInitialText() { + String result = "The object node cusomization"; //$NON-NLS-1$ + final ETypedElementCase eTECase = this.getPropertyElement().getValue2(); + final ETypedElement eTypedElement = eTECase.getCase(); + if (eTypedElement != null) { + result = eTypedElement.getName(); + } + return result; + } + + @Override + public void notifyChanged() { + // Nothing. + } + + +} -- cgit v1.2.3