* Check if the focused word in a number.
* @return true if yes, false otherwise.
*/
public boolean isNumber() {
String number = this.getWord().replace("@", "").trim();
DataTypeRegex dataTypeRegex = new DataTypeRegex(Principal.getInstance().getMainPanel());
return RegexMatcher.matches(dataTypeRegex.getNumbersRegex(), number);
}