Package it.eng.spagobi.tools.dataset.common.dataproxy

Examples of it.eng.spagobi.tools.dataset.common.dataproxy.FileDataProxy


    }
    
 
  public SpagoBiDataSet toSpagoBiDataSet( ) {
    SpagoBiDataSet sbd;
    FileDataProxy dataProxy;
   
    sbd = super.toSpagoBiDataSet();
   
    sbd.setType( DS_TYPE );
       
    dataProxy = (FileDataProxy)getDataProxy();
    sbd.setFileName( dataProxy.getFileName() );
   
    return sbd;
  }
View Full Code Here


    IDataProxy dataProxy;
   
    dataProxy = super.getDataProxy();
   
    if(dataProxy == null) {
      setDataProxy( new FileDataProxy() );
      dataProxy = getDataProxy();
    }
   
    if(!(dataProxy instanceof  FileDataProxy)) throw new RuntimeException("DataProxy cannot be of type [" +
        dataProxy.getClass().getName() + "] in FileDataSet");
View Full Code Here

TOP

Related Classes of it.eng.spagobi.tools.dataset.common.dataproxy.FileDataProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.