Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.xtend.backend/src/org/eclipse/xtend/backend/common/Helpers.java')
-rw-r--r--plugins/org.eclipse.xtend.backend/src/org/eclipse/xtend/backend/common/Helpers.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/org.eclipse.xtend.backend/src/org/eclipse/xtend/backend/common/Helpers.java b/plugins/org.eclipse.xtend.backend/src/org/eclipse/xtend/backend/common/Helpers.java
index 475de8b3..66a05c12 100644
--- a/plugins/org.eclipse.xtend.backend/src/org/eclipse/xtend/backend/common/Helpers.java
+++ b/plugins/org.eclipse.xtend.backend/src/org/eclipse/xtend/backend/common/Helpers.java
@@ -1,5 +1,5 @@
/*
-Copyright (c) 2008 Arno Haase.
+Copyright (c) 2008 Arno Haase, André Arnold.
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
@@ -7,6 +7,7 @@ http://www.eclipse.org/legal/epl-v10.html
Contributors:
Arno Haase - initial API and implementation
+ André Arnold
*/
package org.eclipse.xtend.backend.common;
@@ -18,10 +19,11 @@ import java.util.Collections;
* This class contains commonly used helper operations.
*
* @author Arno Haase (http://www.haase-consulting.com)
+ * @author André Arnold
*/
public class Helpers {
- public static String TO_STRING_METHOD_NAME = "toString";
- public static String EQUALS_NAME = "operatorEquals";
+ public static QualifiedName TO_STRING_METHOD_NAME = new QualifiedName ("toString");
+ public static QualifiedName EQUALS_NAME = new QualifiedName ("operatorEquals");
/**
* This method is public static so as to be available as a helper method for all code that needs to call "toString".

Back to the top