001package com.hammurapi.convert;
002
003import java.util.Collection;
004
005/**
006 * A convenience interface for loading a collection of 
007 * converters. 
008 * @author Pavel
009 *
010 */
011public interface AtomicDecoratorsBundle {
012
013        /**
014         * @return Collection of instances of AtomicDecorator.
015         */
016        Collection<AtomicDecorator<?>> getDecorators();
017}