User: kz Date: 2008-03-05 17:19:52+0000 Modified: dba/reportdesign/java/com/sun/star/report/DataRow.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]: DataRow.java Url: http://dba.openoffice.org/source/browse/dba/reportdesign/java/com/sun/star/report/DataRow.java?r1=1.2&r2=1.3 Delta lines: +9 -8 ------------------- --- DataRow.java 2007-07-09 11:56:03+0000 1.2 +++ DataRow.java 2008-03-05 17:19:47+0000 1.3 @@ -33,8 +33,6 @@ * MA 02111-1307 USA * ************************************************************************/ - - package com.sun.star.report; /** @@ -48,7 +46,10 @@ */ public interface DataRow { + public int getColumnCount() throws DataSourceException; + public String getColumnName(int column) throws DataSourceException; - public Object getObject (int column) throws DataSourceException; + + public Object getObject(int column) throws DataSourceException; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
