// This software is released into the Public Domain. See copying.txt for details. package org.openstreetmap.osmosis.core.task.v0_6; /** * Defines the interface for combining change sink and change source * functionality. This is typically used by classes performing some form of * translation on an input change source before sending along to the output. * This includes filtering tasks and modification tasks. * * @author Brett Henderson */ public interface ChangeSinkChangeSource extends ChangeSink, ChangeSource { // Interface only combines functionality of its extended interfaces. }