All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deephacks.tools4j.config.internal.core.runtime.typesafe.ConfigIncludeContext Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
/**
 *   Copyright (C) 2011-2012 Typesafe Inc. 
 */
package org.deephacks.tools4j.config.internal.core.runtime.typesafe;


/**
 * Context provided to a {@link ConfigIncluder}; this interface is only useful
 * inside a {@code ConfigIncluder} implementation, and is not intended for apps
 * to implement.
 *
 * 

* Do not implement this interface; it should only be implemented by * the typesafe library. Arbitrary implementations will not work because the * library internals assume a specific concrete implementation. Also, this * interface is likely to grow new methods over time, so third-party * implementations will break. */ public interface ConfigIncludeContext { /** * Tries to find a name relative to whatever is doing the including, for * example in the same directory as the file doing the including. Returns * null if it can't meaningfully create a relative name. The returned * parseable may not exist; this function is not required to do any IO, just * compute what the name would be. * * The passed-in filename has to be a complete name (with extension), not * just a basename. (Include statements in typesafe files are allowed to give * just a basename.) * * @param filename * the name to make relative to the resource doing the including * @return parseable item relative to the resource doing the including, or * null */ ConfigParseable relativeTo(String filename); /** * Parse options to use (if you use another method to get a * {@link ConfigParseable} then use {@link ConfigParseable#options()} * instead though). * * @return the parse options */ ConfigParseOptions parseOptions(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy