getColumn( ) | getWidth( ) |
getColumnSpan( ) | setColumn( int column ) |
getDrop( ) | setColumnSpan( int span ) |
getHeight( ) | setDrop( java.lang.String drop ) |
getRowSpan( ) |
getContent( ) | setContent( java.lang.String value ) |
getContentKey( ) | setContentKey( java.lang.String resourceKey ) |
getContentType( ) | setContentType( java.lang.String contentType ) |
getDisplayContent( ) |
getComments( ) | getUserProperty( java.lang.String name ) |
getCustomXml( ) | setComments( java.lang.String theComments ) |
getDisplayName( ) | setCustomXml( java.lang.String customXml ) |
getDisplayNameKey( ) | setDisplayName( java.lang.String displayName ) |
getName( ) | setDisplayNameKey( java.lang.String displayNameKey ) |
getNamedExpression( java.lang.String name ) | setName( java.lang.String name ) |
getParent( ) | setNamedExpression( java.lang.String name, java.lang.String exp ) |
getQualifiedName( ) | setUserProperty( java.lang.String name, java.lang.Object value ) |
getStyle( ) |
getColSpan( ) | setColSpan( int colSpan ) |
getColumn( ) | setRowSpan( int rowSpan ) |
getRowSpan( ) |
getBookmarkValue( ) | setBookmark( ) |
getHeight( ) | setHeight( ) |
getStyle( ) |
Method | Task |
deleteGlobalVariable( java.lang.String name ) | Removes a global variable created using the setGlobalVariable( ) method. |
deletePersistentGlobalVariable( java.lang.String name ) | Removes a persistent global variable created using the setPersistentGlobalVariable( ) method. |
getAppContext( ) | Retrieves the application context object as a java.util.Map object. The report application can use the application context object to pass any information that is application‑specific. |
getGlobalVariable( java.lang.String name ) | Returns the object saved with the setGlobalVariable( ) method. The string argument is the key used when saving the object. |
getHttpServletRequest( ) | Returns the HttpServletRequest object associated with the URL requesting the report. The HttpServletRequest object provides access to the HTTP session object, the request URL, and any parameters appended to the request. |
getLocale( ) | Returns the locale of the report execution or rendering task. This locale can be different from the local machine’s system or user locale. |
getMessage( java.lang.String key ) | Returns a message from the default properties file. |
getMessage( java.lang.String key, java.util.Locale locale, java.lang.Object [ ] params ) | Returns a message from the properties file for a specified locale, using a parameters array. |
getMessage( java.lang.String key, java.lang.Object[ ] params ) | Returns a message from the default properties file, using a parameters array. |
getOutputFormat( ) | Returns a string containing the format specified in the _ _format parameter of the request URL. |
getParameterValue( java.lang.String name ) | Returns the value of the parameter named in the name argument as a java.lang.Object. |
getPersistentGlobalVariable( java.lang.String name ) | Returns the serializable object saved using setPersistentGlobalVariable( ) method. The string argument is the key used when saving the serializable object. |
getRenderOption( ) | Gets the render options used to render the report. |
getReportRunnable( ) | Gets the report runnable instance used to create or render this report. |
getTaskType() | Gets the type of the current task. |
setGlobalVariable( java.lang.String name,java.lang.Object obj ) | Saves an object that can be retrieved in the same execution phase as it is saved. This method takes a string argument and an Object argument. Use the string argument as a key with which to retrieve the saved object. |
setParameterDisplayText( java.lang.String name, java.lang.Object value ) | Sets the display text for a parameter. |
setParameterValue( java.lang.String name,java.lang.Object value ) | Sets the value of a named parameter with the value contained in the value argument. |
setPersistentGlobalVariable( java.lang.String name,java.io.Serializable obj ) | Saves an object that can be retrieved in a different execution phase from the phase that saves the object. This method takes a string argument and a serializable object argument. Use the string argument as a key with which to retrieve the serializable object. The serializable object is saved in the report document. The object is serializable to persist it between phases supporting executing the two phases at different times and possibly on different machines. |
Method | Returns |
getColumnAlias( int index ) | Alias assigned to the column by index |
getColumnCount( ) | Count of columns in the data set |
getColumnLabel( int index ) | Label assigned to the column by index |
getColumnName( int index ) | String containing the name of the column by index |
getColumnNativeTypeName( int index ) | Name of the native type of data in the column by index |
getColumnType( int index ) | Data type of the column by index |
getColumnTypeName( int index ) | Name of the type of data in the column by index |
isComputedColumn( int index ) | True or false, depending on whether the column indicated by index is a computed field |
Method | Returns |
getAllExtensionProperties( ) | The data set extension properties in the form of a java.util.Map object. The map object maps data extension names to their values. |
getColumnMetaData( ) | An IColumnMetaData object that provides the data set’s metadata. |
getDataSource( ) | A DataSource object associated with the data set. |
getExtensionID( ) | The unique ID that identifies the type of the data set, assigned by the extension that implements this data set. |
getExtensionProperty( java.lang.String name ) | The value of a data set extension property. |
getName( ) | The name of this data set. |
getQueryText( ) | The query text of the data set. |
setExtensionProperty( java.lang.String name, java.lang.String value ) | The value of an extension property. |
setQueryText( java.lang.String queryText ) | The query text of the data set. |
Method | Returns |
getColumnValue( int index ) | The column data by index. This index is 1-based. |
getColumnValue( java.lang.String name ) | The column data by column name. |
getDataSet( ) | An IDataSetInstance object representing the data set that contains this row. |
Method | Returns |
getColumnCount( ) | The count of the columns. |
getColumnName( int index ) | The name of the column by index. |
getColumnValue( int index ) | The value of the column by index. This index is 1‑based. |
getColumnValue( String name ) | The value of the column by name. |