Package org.freud.core

Examples of org.freud.core.FreudSource


    }

    @SuppressWarnings("unchecked")
    public static <T> Iterable<Text> textOf(Iterable<T> iterable) {
        Class type = typeOf(iterable);
        return textOf(new FreudSource(iterable, type));
    }
View Full Code Here


    private ClassObjectDsl() {
        // static utility
    }

    public static Iterable<Class> classOf(Iterable<String> iterable) {
        return classOf(new FreudSource(iterable, String.class));
    }
View Full Code Here

    }

    @SuppressWarnings("unchecked")
    public static <T> Iterable<CssRule> cssRulesOf(Iterable<T> iterable) {
        Class type = typeOf(iterable);
        return cssRulesOf(new FreudSource(iterable, type));
    }
View Full Code Here

    }

    @SuppressWarnings("unchecked")
    public static <T> Iterable<Property> propertyOf(Iterable<T> iterable) {
        Class type = typeOf(iterable);
        return propertyOf(new FreudSource(iterable, type));
    }
View Full Code Here

        // static utility
    }

    public static <T> Iterable<ClassByteCode> classOf(Iterable<T> iterable) {
        Class type = typeOf(iterable);
        return classOf(new FreudSource(iterable, type));
    }
View Full Code Here

    }

    @SuppressWarnings("unchecked")
    public static <T> Iterable<JavaSource> javaSourceOf(Iterable<T> iterable) {
        Class type = typeOf(iterable);
        return javaSourceOf(new FreudSource(iterable, type));
    }
View Full Code Here

TOP

Related Classes of org.freud.core.FreudSource

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.