tikhomirov@431: /* tikhomirov@431: * Copyright (c) 2012 TMate Software Ltd tikhomirov@431: * tikhomirov@431: * This program is free software; you can redistribute it and/or modify tikhomirov@431: * it under the terms of the GNU General Public License as published by tikhomirov@431: * the Free Software Foundation; version 2 of the License. tikhomirov@431: * tikhomirov@431: * This program is distributed in the hope that it will be useful, tikhomirov@431: * but WITHOUT ANY WARRANTY; without even the implied warranty of tikhomirov@431: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the tikhomirov@431: * GNU General Public License for more details. tikhomirov@431: * tikhomirov@431: * For information on how to redistribute this software under tikhomirov@431: * the terms of a license other than GNU General Public License tikhomirov@431: * contact TMate Software at support@hg4j.com tikhomirov@431: */ tikhomirov@431: package org.tmatesoft.hg.util; tikhomirov@431: tikhomirov@431: /** tikhomirov@431: * Transformations, e.g. unique instances tikhomirov@431: * tikhomirov@431: * @author Artem Tikhomirov tikhomirov@431: * @author TMate Software Ltd. tikhomirov@431: */ tikhomirov@431: public interface Convertor { tikhomirov@431: T mangle(T t); tikhomirov@431: }