summaryrefslogtreecommitdiffstats
path: root/rba.tool.editor.ui/src/rba/tool/editor/ui/util/CharacterUtil.xtend
blob: 28cbe08e92d899af2352c84a6d324f0e1edad889 (plain)
1
2
3
4
5
6
7
8
9
10
package rba.tool.editor.ui.util

import org.eclipse.xtext.Keyword

class CharacterUtil {

	def public static boolean isKeywordWorthyToPropose(Keyword keyword) {
		return keyword.getValue().length() > 1 && Character.isLetter(keyword.getValue().charAt(0));
	}
}