for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Soluble\Jasper\Proxy;
use Soluble\Japha\Interfaces\JavaObject;
use Soluble\Japha\Bridge\Adapter as BridgeAdapter;
class JREmptyDataSource implements JRDataSourceInterface
{
/**
* @var BridgeAdapter
*/
protected $ba;
* @var \Soluble\Japha\Interfaces\JavaObject
protected $jrEmptyDataSource;
public function __construct(BridgeAdapter $bridgeAdapter)
$this->ba = $bridgeAdapter;
$this->jrEmptyDataSource = $this->ba->java('net.sf.jasperreports.engine.JREmptyDataSource');
}
public function getJavaProxiedObject(): JavaObject
return $this->jrEmptyDataSource;