001 package biz.hammurapi.dataflow; 002 003 import biz.hammurapi.properties.PropertySetFilter; 004 005 /** 006 * Delegates all calls to the master data. 007 * @author Pavel 008 * 009 */ 010 public class DataFilter extends PropertySetFilter implements Data { 011 012 public DataFilter(Data master) { 013 super(master); 014 } 015 016 }