All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.joseflavio.urucum.javabeans.Transferidor Maven / Gradle / Ivy

There is a newer version: 1.0-A16
Show newest version

/*
 *  Copyright (C) 2016 Jos? Fl?vio de Souza Dias J?nior
 *  
 *  This file is part of Urucum - .
 *  
 *  Urucum is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *  
 *  Urucum is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU Lesser General Public License for more details.
 *  
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with Urucum. If not, see .
 */

/*
 *  Direitos Autorais Reservados (C) 2016 Jos? Fl?vio de Souza Dias J?nior
 * 
 *  Este arquivo ? parte de Urucum - .
 * 
 *  Urucum ? software livre: voc? pode redistribu?-lo e/ou modific?-lo
 *  sob os termos da Licen?a P?blica Menos Geral GNU conforme publicada pela
 *  Free Software Foundation, tanto a vers?o 3 da Licen?a, como
 *  (a seu crit?rio) qualquer vers?o posterior.
 * 
 *  Urucum ? distribu?do na expectativa de que seja ?til,
 *  por?m, SEM NENHUMA GARANTIA; nem mesmo a garantia impl?cita de
 *  COMERCIABILIDADE ou ADEQUA??O A UMA FINALIDADE ESPEC?FICA. Consulte a
 *  Licen?a P?blica Menos Geral do GNU para mais detalhes.
 * 
 *  Voc? deve ter recebido uma c?pia da Licen?a P?blica Menos Geral do GNU
 *  junto com Urucum. Se n?o, veja .
 */

package com.joseflavio.urucum.javabeans;

import java.lang.reflect.InvocationTargetException;

/**
 * Transferidor de propriedades (JavaBeans) entre objetos.
 * @author Jos? Fl?vio de Souza Dias J?nior
 */
public interface Transferidor {

	/**
	 * Transfere as propriedades (JavaBeans) de um objeto para outro.
	 * @param origem Origem das propriedades (atributos).
	 * @param destino Destino das propriedades (atributos).
	 */
	void transferir( Object origem, Object destino ) throws
		IllegalArgumentException, IllegalAccessException, InvocationTargetException;
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy