ChainedContext.java

biz/hammurapi/config/ChainedContext.java

Violations

Inspector Message Severity Location
Java Inspector 048 Copyrights information should be present in each file. 1

Source code

1package biz.hammurapi.config;
2
3/**
4 * Context which requires another context to be functional and
5 * also delegates unresolved names to that context.
6 * @author Pavel
7 */
8public interface ChainedContext {
9
10 Object get(String name, Context chain);
11
12}
13