001 package biz.hammurapi.convert; 002 003 /** 004 * Decorator interface. 005 * @author Pavel 006 */ 007 public interface Decorator { 008 009 /** 010 * Decorates source. 011 * @param source 012 * @return Instance of target type. 013 */ 014 Object decorate(Object source); 015 }