AtomicDecoratorsBundle.java

biz/hammurapi/convert/AtomicDecoratorsBundle.java

Violations

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

Source code

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 AtomicDecoratorsBundle {
12
13 /**
14 * @return Collection of instances of AtomicConverter.
15 */
16 Collection getDecorators();
17}
18