Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3ff0ef898e1db5992069ca8a943e9c370d74dae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.linuxtools.rpm.ui.editor;

public class SuffixNumberDetector implements IStrictWordDetector {

	public boolean isEndingCharacter(char c) {
		return (c == ':');
	}

	public boolean isWordPart(char c) {
		return Character.isDigit(c);
	}

	public boolean isWordStart(char c) {
		// TODO Auto-generated method stub
		return Character.isDigit(c);
	}

}

Back to the top