Package com.crashnote.core.config.helper.impl.SimpleIncluder

Examples of com.crashnote.core.config.helper.impl.SimpleIncluder.NameSource


    };

    /** For use ONLY by library internals, DO NOT TOUCH not guaranteed ABI */
    public static ConfigObject parseResourcesAnySyntax(final Class<?> klass, final String resourceBasename,
            final ConfigParseOptions baseOptions) {
        final NameSource source = new ClasspathNameSourceWithClass(klass);
        return SimpleIncluder.fromBasename(source, resourceBasename, baseOptions);
    }
View Full Code Here


    }

    /** For use ONLY by library internals, DO NOT TOUCH not guaranteed ABI */
    public static ConfigObject parseResourcesAnySyntax(final String resourceBasename,
            final ConfigParseOptions baseOptions) {
        final NameSource source = new ClasspathNameSource();
        return SimpleIncluder.fromBasename(source, resourceBasename, baseOptions);
    }
View Full Code Here

        return SimpleIncluder.fromBasename(source, resourceBasename, baseOptions);
    }

    /** For use ONLY by library internals, DO NOT TOUCH not guaranteed ABI */
    public static ConfigObject parseFileAnySyntax(final File basename, final ConfigParseOptions baseOptions) {
        final NameSource source = new FileNameSource();
        return SimpleIncluder.fromBasename(source, basename.getPath(), baseOptions);
    }
View Full Code Here

TOP

Related Classes of com.crashnote.core.config.helper.impl.SimpleIncluder.NameSource

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.