Package br.com.gmartins.simbler.instructions

Examples of br.com.gmartins.simbler.instructions.InstructionRegex


     */
    public void addRegex(String regex, boolean linkable, boolean hasNumbers) {
        if (regexList == null) {
            regexList = new ArrayList<InstructionRegex>();
        }
        InstructionRegex mmenomicRegex = new InstructionRegex(owner);
        mmenomicRegex.setLinkable(linkable);
        mmenomicRegex.setRegex(regex);
        mmenomicRegex.setHasNumbers(hasNumbers);
        this.regexList.add(mmenomicRegex);
    }
View Full Code Here

TOP

Related Classes of br.com.gmartins.simbler.instructions.InstructionRegex

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.