Package com.strobel.decompiler.languages.java.ast

Examples of com.strobel.decompiler.languages.java.ast.PrimitiveExpression


    }

    @Override
    public final boolean matches(final INode other, final Match match) {
        if (other instanceof PrimitiveExpression) {
            final PrimitiveExpression primitive = (PrimitiveExpression) other;

            if (_primitiveType.isInstance(primitive.getValue())) {
                match.add(_groupName, other);
                return true;
            }
        }
        return false;
View Full Code Here


    }

    @Override
    public final boolean matches(final INode other, final Match match) {
        if (other instanceof PrimitiveExpression) {
            final PrimitiveExpression primitive = (PrimitiveExpression) other;

            if (_primitiveType.isInstance(primitive.getValue())) {
                match.add(_groupName, other);
                return true;
            }
        }
        return false;
View Full Code Here

TOP

Related Classes of com.strobel.decompiler.languages.java.ast.PrimitiveExpression

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.