Package br.com.gmartins.simbler.compiler.analyzers

Examples of br.com.gmartins.simbler.compiler.analyzers.DataTypeRegex


     * 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);
    }
View Full Code Here

TOP

Related Classes of br.com.gmartins.simbler.compiler.analyzers.DataTypeRegex

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.