Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.config;
2
3import java.util.Iterator;
4
5/**
6 * Context which can enumerate values in it.
7 * @author Pavel
8 */
9public interface TraversableContext extends Context {
10 /**
11 * @return Iterator over names in the context.
12 */
13 Iterator getNames();
14}
15