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

E12063-04

oracle.adf.view.faces.bi.component.graph
Class BaseFrame

java.lang.Object
  extended by oracle.adf.view.faces.bi.component.BIComplexAttributeBase
      extended by oracle.adf.view.faces.bi.component.graph.BaseFrame
All Implemented Interfaces:
javax.faces.component.StateHolder
Direct Known Subclasses:
FunnelFrame, PieFrame, PlotArea

public class BaseFrame
extends BIComplexAttributeBase

Since:
11.0

Field Summary
static org.apache.myfaces.trinidad.bean.PropertyKey BORDER_COLOR_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey BORDER_TRANSPARENT_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey FILL_COLOR_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey FILL_TRANSPARENT_KEY
           
protected  java.awt.Color m_defaultBorderColor
           
protected  boolean m_defaultBorderTransparent
           
protected  java.awt.Color m_defaultColor
           
protected  boolean m_defaultFillTransparent
           
protected  boolean m_defaultRendered
           
static org.apache.myfaces.trinidad.bean.PropertyKey RENDERED_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey SFX_KEY
           
static org.apache.myfaces.trinidad.bean.FacesBean.Type TYPE
           
 
Fields inherited from class oracle.adf.view.faces.bi.component.BIComplexAttributeBase
ID_KEY, m_parent, TRANSIENT_KEY
 
Constructor Summary
BaseFrame()
           
 
Method Summary
protected  org.apache.myfaces.trinidad.bean.FacesBean.Type getBeanType()
           
 java.awt.Color getBorderColor()
          Retrieves the border color of this object.
 java.awt.Color getFillColor()
          Retrieves the fill color of this object.
 SpecialEffects getSpecialEffects()
           
 boolean isBorderTransparent()
          Indicates whether the border of this object is transparent.
 boolean isFillTransparent()
          Indicates whether the fill color of this frame is transparent.
 boolean isRendered()
          Indicates whether this object is rendered.
protected  void resetStyleProperties()
           
 void restoreState(javax.faces.context.FacesContext context, java.lang.Object stateObj)
           
 void setBorderColor(java.awt.Color newColor)
          Specifies the border color of this object.
 void setBorderTransparent(boolean yesNo)
          Specifies whether the border of this object is transparent.
 void setFillColor(java.awt.Color newColor)
          Specifies the fill color of this object.
 void setFillTransparent(boolean yesNo)
          Specifies whether the fill color for this object is transparent.
 void setRendered(boolean rendered)
          Specifies whether this object is rendered.
 void setSpecialEffects(SpecialEffects sfx)
           
 
Methods inherited from class oracle.adf.view.faces.bi.component.BIComplexAttributeBase
applyProperties, getBooleanProperty, getFacesBean, getId, getParent, getProperty, getPropertyKey, getSetAttributeIndex, isTransient, isUpdated, processSetAttribute, processSetAttributeAndAdd, saveState, setBooleanProperty, setId, setParent, setProperty, setTransient, setUpdated
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_defaultColor

protected java.awt.Color m_defaultColor

m_defaultFillTransparent

protected boolean m_defaultFillTransparent

m_defaultBorderColor

protected java.awt.Color m_defaultBorderColor

m_defaultBorderTransparent

protected boolean m_defaultBorderTransparent

m_defaultRendered

protected boolean m_defaultRendered

TYPE

public static final org.apache.myfaces.trinidad.bean.FacesBean.Type TYPE

FILL_COLOR_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey FILL_COLOR_KEY

BORDER_COLOR_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey BORDER_COLOR_KEY

FILL_TRANSPARENT_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey FILL_TRANSPARENT_KEY

BORDER_TRANSPARENT_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey BORDER_TRANSPARENT_KEY

RENDERED_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey RENDERED_KEY

SFX_KEY

public static final org.apache.myfaces.trinidad.bean.PropertyKey SFX_KEY
Constructor Detail

BaseFrame

public BaseFrame()
Method Detail

getFillColor

public java.awt.Color getFillColor()
Retrieves the fill color of this object.

Returns:
The fill color of this object.

setFillColor

public void setFillColor(java.awt.Color newColor)
Specifies the fill color of this object. As the GraphType property of the graph changes, a different subclass of this class provides the background for the data. The fill color remains the same in the PlotArea, PieFrame, and ThreeDFloor. If SharePanelProperties is true, then this fill color is used for the ThreeDLeftWall and the ThreeDRightWall as well.

Parameters:
newColor - The color of this object.

isFillTransparent

public boolean isFillTransparent()
Indicates whether the fill color of this frame is transparent.

Returns:
true if it is transparent, false if it is rendered.

setFillTransparent

public void setFillTransparent(boolean yesNo)
Specifies whether the fill color for this object is transparent.


getBorderColor

public java.awt.Color getBorderColor()
Retrieves the border color of this object.

Returns:
The border color of this object.

setBorderColor

public void setBorderColor(java.awt.Color newColor)
Specifies the border color of this object. As the GraphType property of the graph changes, a different subclass of this class provides the background for the data. The border color remains the same in the PlotArea, PieFrame, and ThreeDFloor. If SharePanelProperties is true, then this border color is used for the ThreeDLeftWall and the ThreeDRightWall as well.

Parameters:
newColor - The border color of this object.

isBorderTransparent

public boolean isBorderTransparent()
Indicates whether the border of this object is transparent.

Returns:
true if it is transparent, false if it is rendered.

setBorderTransparent

public void setBorderTransparent(boolean yesNo)
Specifies whether the border of this object is transparent.

Parameters:
yesNo - true to make it transparent, false to make it rendered.

isRendered

public boolean isRendered()
Indicates whether this object is rendered. Automatic graph layout respects this property.

Returns:
true if it is rendered, false if it is not rendered.

setRendered

public void setRendered(boolean rendered)
Specifies whether this object is rendered. Automatic graph layout respects this property.

Parameters:
rendered - true to make it rendered, false to make it not rendered.

restoreState

public void restoreState(javax.faces.context.FacesContext context,
                         java.lang.Object stateObj)
Specified by:
restoreState in interface javax.faces.component.StateHolder
Overrides:
restoreState in class BIComplexAttributeBase

getSpecialEffects

public SpecialEffects getSpecialEffects()

setSpecialEffects

public void setSpecialEffects(SpecialEffects sfx)

resetStyleProperties

protected void resetStyleProperties()

getBeanType

protected org.apache.myfaces.trinidad.bean.FacesBean.Type getBeanType()
Specified by:
getBeanType in class BIComplexAttributeBase

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

E12063-04

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