Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.4.0)

E12063-05

oracle.adf.view.faces.bi.component.pivotTable
Class CellImage

java.lang.Object
  extended by oracle.adf.view.faces.bi.component.pivotTable.CellImage

Deprecated. Use <dvt:dataCell> with child tag <af:image> or <af:commandImageLink> instead

@Deprecated
public class CellImage
extends java.lang.Object

Represents an image placed in a cell.


Field Summary
static java.lang.String NAME_ANNOTATION
          Deprecated.  
 
Constructor Summary
CellImage(java.lang.String name, java.lang.String source, int height, int width, java.lang.String[] tooltip)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
CellImage(java.lang.String name, java.lang.String iconName, java.lang.String[] tooltip)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
CellImage(java.lang.String name, java.lang.String source, java.lang.String rtlSource, int height, int width, java.lang.String[] tooltip)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 
Method Summary
 int getHeight()
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 java.lang.String getIconName()
          Deprecated.  
 java.lang.String getName()
          Deprecated.  
 java.lang.String getRtlSource()
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 java.lang.String getSource()
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 java.lang.String[] getTooltip()
          Deprecated.  
 int getWidth()
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 void setHeight(int param)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 void setIconName(java.lang.String iconName)
          Deprecated.  
 void setName(java.lang.String name)
          Deprecated.  
 void setRtlSource(java.lang.String rtlSource)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 void setSource(java.lang.String source)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 void setTooltip(java.lang.String[] tooltip)
          Deprecated.  
 void setWidth(int param)
          Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NAME_ANNOTATION

public static final java.lang.String NAME_ANNOTATION
Deprecated. 
See Also:
Constant Field Values
Constructor Detail

CellImage

@Deprecated
public CellImage(java.lang.String name,
                            java.lang.String source,
                            java.lang.String rtlSource,
                            int height,
                            int width,
                            java.lang.String[] tooltip)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead

The image name must be unique per cell, but not across cells. This is because the image-click event will identify both the cell and the image name. The image is treated as an annotation icon iff the name is CellImage.NAME_ANNOTATION. In this case only, the image path is ignored and the annotation icon is used. The RTL image path is used instead of the regular image path when the browser is in RTL mode. If this argument is null, the regular image path is used in both cases. As with the regular image, it is ignored when the name is CellImage.NAME_ANNOTATION. The tooltip is an array of strings to facilitate simple multiline text. The tooltip seen by the user is formed by concatenating the strings in the array with newlines as the separator.

Parameters:
name - the name of the image.
source - path to the image file
rtlSource - path to the image file for RTL mode
height - height of the image in pixels
width - width of the image in pixels
tooltip - text to be displayed when the mouse hovers over the image

CellImage

@Deprecated
public CellImage(java.lang.String name,
                            java.lang.String source,
                            int height,
                            int width,
                            java.lang.String[] tooltip)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead

Calling this constructor is equivalent to calling the other constructor with an rtlSource of null.


CellImage

@Deprecated
public CellImage(java.lang.String name,
                            java.lang.String iconName,
                            java.lang.String[] tooltip)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead

The image name must be unique per cell, but not across cells. This is because the image-click event will identify both the cell and the image name. The image is treated as an annotation icon iff the name is CellImage.NAME_ANNOTATION. In this case only, the iconName is ignored and the annotation icon is used. The iconName specifies the name/skinning key of an icon registered with the current skin. The tooltip is an array of strings to facilitate simple multiline text. The tooltip seen by the user is formed by concatenating the strings in the array with newlines as the separator.

Parameters:
name - the name of the image.
iconName - the name of an icon registered with the skin
tooltip - text to be displayed when the mouse hovers over the image
Method Detail

setName

public void setName(java.lang.String name)
Deprecated. 

getName

public java.lang.String getName()
Deprecated. 

setIconName

public void setIconName(java.lang.String iconName)
Deprecated. 

getIconName

public java.lang.String getIconName()
Deprecated. 

setHeight

public void setHeight(int param)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


getHeight

public int getHeight()
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


setWidth

public void setWidth(int param)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


getWidth

public int getWidth()
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


setSource

public void setSource(java.lang.String source)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


getSource

public java.lang.String getSource()
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


setRtlSource

public void setRtlSource(java.lang.String rtlSource)
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


getRtlSource

public java.lang.String getRtlSource()
Deprecated. custom images should be specified via <dvt:dataCell> with child tag <af:image>, <af:icon> or <af:commandImageLink> instead


setTooltip

public void setTooltip(java.lang.String[] tooltip)
Deprecated. 

getTooltip

public java.lang.String[] getTooltip()
Deprecated. 

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1.4.0)

E12063-05

Copyright © 1997, 2011, Oracle. All rights reserved.