User: kz Date: 2008-03-05 17:21:16+0000 Modified: dba/reportdesign/java/com/sun/star/report/DataSource.java
Log: INTEGRATION: CWS rptchart01_DEV300 (1.2.70); FILE MERGED 2008/02/20 10:52:54 oj 1.2.70.1: format changes File Changes: Directory: /dba/reportdesign/java/com/sun/star/report/ ====================================================== File [changed]: DataSource.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/DataSource.java?r1=1.2&r2=1.3 Delta lines: +11 -8 -------------------- --- DataSource.java 2007-07-09 11:56:03+0000 1.2 +++ DataSource.java 2008-03-05 17:21:13+0000 1.3 @@ -33,7 +33,6 @@ * MA 02111-1307 USA * ************************************************************************/ - package com.sun.star.report; /** @@ -47,8 +46,12 @@ */ public interface DataSource extends DataRow { + public int getRowCount() throws DataSourceException; - public boolean absolute (int row) throws DataSourceException; + + public boolean absolute(int row) throws DataSourceException; + public boolean next() throws DataSourceException; + public void close() throws DataSourceException; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
