Skip navigation links

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

E12063-03


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

java.lang.Object
  extended by oracle.adf.view.faces.bi.component.BIComplexAttributeBase
      extended by oracle.adf.view.faces.bi.component.graph.BaseTextComponent
          extended by oracle.adf.view.faces.bi.component.graph.MarkerText

All Implemented Interfaces:
javax.faces.component.StateHolder

public class MarkerText
extends BaseTextComponent
Since:
11.0

Field Summary
protected  java.awt.Color m_defaultFontColor
           
protected  int m_defaultFontSize
           
protected  int m_defaultFontStyle
           
protected  java.lang.String m_defaultFontTypeface
           
protected  int m_defaultMarkerTextPlace
           
protected  boolean m_defaultRendered
           
static org.apache.myfaces.trinidad.bean.PropertyKey MARKER_TEXT_PLACE_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey RENDERED_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey STOCK_VOLUME_NUMBER_FORMAT_KEY
           
static org.apache.myfaces.trinidad.bean.FacesBean.Type TYPE
           
static org.apache.myfaces.trinidad.bean.PropertyKey X1_NUMBER_FORMAT_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey Y1_NUMBER_FORMAT_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey Y2_NUMBER_FORMAT_KEY
           
static org.apache.myfaces.trinidad.bean.PropertyKey Z_NUMBER_FORMAT_KEY
           

 

Fields inherited from class oracle.adf.view.faces.bi.component.graph.BaseTextComponent
GRAPH_FONT_KEY

 

Fields inherited from class oracle.adf.view.faces.bi.component.BIComplexAttributeBase
ID_KEY, m_parent, TRANSIENT_KEY

 

Constructor Summary
MarkerText()
           

 

Method Summary
 void applyProperties(java.util.HashMap map)
          Applications do not need to call this method.
protected  org.apache.myfaces.trinidad.bean.FacesBean.Type getBeanType()
           
 int getMarkerTextPlace()
          Retrieves the placement for this marker text.
 oracle.adf.view.faces.bi.component.util.NumberFormat getStockVolumeNumberFormat()
           
 oracle.adf.view.faces.bi.component.util.NumberFormat getX1NumberFormat()
           
 oracle.adf.view.faces.bi.component.util.NumberFormat getY1NumberFormat()
           
 oracle.adf.view.faces.bi.component.util.NumberFormat getY2NumberFormat()
           
 oracle.adf.view.faces.bi.component.util.NumberFormat getZNumberFormat()
           
 boolean isRendered()
          Indicates whether this marker text is rendered.
protected  void resetStyleProperties()
           
 void restoreState(javax.faces.context.FacesContext context, java.lang.Object stateObj)
           
 void setMarkerTextPlace(int place)
          Specifies the placement for this marker text.
 void setRendered(boolean rendered)
          Specifies whether this marker text is rendered.
 void setStockVolumeNumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)
           
 void setX1NumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)
           
 void setY1NumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)
           
 void setY2NumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)
           
 void setZNumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)
           

 

Methods inherited from class oracle.adf.view.faces.bi.component.graph.BaseTextComponent
getGraphFont, setGraphFont

 

Methods inherited from class oracle.adf.view.faces.bi.component.BIComplexAttributeBase
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_defaultMarkerTextPlace

protected int m_defaultMarkerTextPlace

m_defaultRendered

protected boolean m_defaultRendered

m_defaultFontTypeface

protected java.lang.String m_defaultFontTypeface

m_defaultFontStyle

protected int m_defaultFontStyle

m_defaultFontSize

protected int m_defaultFontSize

m_defaultFontColor

protected java.awt.Color m_defaultFontColor

TYPE

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

MARKER_TEXT_PLACE_KEY

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

RENDERED_KEY

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

X1_NUMBER_FORMAT_KEY

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

Y1_NUMBER_FORMAT_KEY

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

Y2_NUMBER_FORMAT_KEY

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

Z_NUMBER_FORMAT_KEY

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

STOCK_VOLUME_NUMBER_FORMAT_KEY

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

Constructor Detail

MarkerText

public MarkerText()

Method Detail

getMarkerTextPlace

public int getMarkerTextPlace()
Retrieves the placement for this marker text. The placement is relative to the marker that this marker text belongs to.
Returns:
A constant that represents the placement for this marker text. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.MTP_OUTSIDE_MAX, BaseGraphComponent.MTP_ON_MAXEDGE, BaseGraphComponent.MTP_INSIDE_MAX, BaseGraphComponent.MTP_INSIDE_MIN, BaseGraphComponent.MTP_CENTER, BaseGraphComponent.MTP_CUSTOM

setMarkerTextPlace

public void setMarkerTextPlace(int place)
Specifies the placement for this marker text. The placement is relative to the marker that this marker text belongs to.
Parameters:
place - A constant that represents the placement for this marker text. Valid constants are listed in the See Also section.
See Also:
BaseGraphComponent.MTP_OUTSIDE_MAX, BaseGraphComponent.MTP_ON_MAXEDGE, BaseGraphComponent.MTP_INSIDE_MAX, BaseGraphComponent.MTP_INSIDE_MIN, BaseGraphComponent.MTP_CENTER, BaseGraphComponent.MTP_CUSTOM

isRendered

public boolean isRendered()
Indicates whether this marker text is rendered.
Returns:
true if it is rendered, false if it is not.

setRendered

public void setRendered(boolean rendered)
Specifies whether this marker text is rendered.
Parameters:
yesNo - true to make this marker text rendered, false to make it not rendered.

applyProperties

public void applyProperties(java.util.HashMap map)
Description copied from class: BIComplexAttributeBase
Applications do not need to call this method. This is for internal use.
Overrides:
applyProperties in class BIComplexAttributeBase
Parameters:
map - hashMap that contains property value pairs.

resetStyleProperties

protected void resetStyleProperties()

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

getX1NumberFormat

public oracle.adf.view.faces.bi.component.util.NumberFormat getX1NumberFormat()

setX1NumberFormat

public void setX1NumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)

getY1NumberFormat

public oracle.adf.view.faces.bi.component.util.NumberFormat getY1NumberFormat()

setY1NumberFormat

public void setY1NumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)

getY2NumberFormat

public oracle.adf.view.faces.bi.component.util.NumberFormat getY2NumberFormat()

setY2NumberFormat

public void setY2NumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)

getZNumberFormat

public oracle.adf.view.faces.bi.component.util.NumberFormat getZNumberFormat()

setZNumberFormat

public void setZNumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)

getStockVolumeNumberFormat

public oracle.adf.view.faces.bi.component.util.NumberFormat getStockVolumeNumberFormat()

setStockVolumeNumberFormat

public void setStockVolumeNumberFormat(oracle.adf.view.faces.bi.component.util.NumberFormat format)

getBeanType

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

Skip navigation links

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

E12063-03


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