Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.convert;
2
3import java.util.Collection;
4
5/**
6 * A convenience interface for loading a collection of
7 * converters.
8 * @author Pavel
9 *
10 */
11public interface AtomicConvertersBundle {
12
13 /**
14 * @return Collection of instances of AtomicConverter.
15 */
16 Collection getConverters();
17}
18