Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 | |
Java Inspector 089 | Undocumented top level type | 2 | 5:1 |
1package biz.hammurapi.config;
2
3import java.util.Iterator;
4
5public interface ContextEx extends Context {
6
7 /**
8 * @return Names in the context.
9 */
10 Iterator getNames();
11
12}
13