if( tipoComando == JAVA ) {
Class classPlugin = getClass().getClassLoader().loadClass(classNamePlugin);
SVNPlugin plugin = (SVNPlugin)classPlugin.newInstance();
plugin.ejecutar(this, objetoSeleccionadoRecibo, parametros);
}
else if( tipoComando == SHELL ) {
Runtime runTime = Runtime.getRuntime();
Process proceso = runTime.exec(parametros);
}