com.sap.tc.webdynpro.clientserver.uielib.analytics.api

Interface IWDAbstractRange

All Superinterfaces:
IWDUIElement, IWDViewElement
All Known Subinterfaces:
IWDAbstractLabeledRange, IWDAbstractRangedSlider, IWDAbstractSlider, IWDGauge, IWDHorizontalRange, IWDHorizontalSlider, IWDSpinner, IWDVerticalRange, IWDVerticalSlider

public interface IWDAbstractRange
extends IWDUIElement

Web Dynpro AbstractRange API. Abstract range class for all range controls, including sliders, gauges and spinners.

This type can be called by applications using Web Dynpro, but DO NOT EXTEND OR IMPLEMENT IT!

Type Classification Type Classification:

This interface is part of the Web Dynpro API, so applications may reference it or call any method of it, but they must not implement or extend it.

For a detailed explanation of API classification see the Web Dynpro Compatibility Guide

Field Summary
static double DEFAULT_MAX
          Default value of the max property is 100.0.
static double DEFAULT_MIN
          Default value of the min property is 0.0.
 
Fields inherited from interface com.sap.tc.webdynpro.progmodel.api.IWDUIElement
DEFAULT_ENABLED, DEFAULT_TOOLTIP, DEFAULT_VISIBLE
 
Method Summary
 String bindingOfMax()
          Returns the binding path of the max property.
 String bindingOfMin()
          Returns the binding path of the min property.
 void bindMax(IWDAttributeInfo attributeInfo)
          Binds the max property to the context attribute specified by the given attribute info.
 void bindMax(String path)
          Binds the max property to the context attribute specified by the given path.
 void bindMin(IWDAttributeInfo attributeInfo)
          Binds the min property to the context attribute specified by the given attribute info.
 void bindMin(String path)
          Binds the min property to the context attribute specified by the given path.
 double getMax()
          Returns the value of the max property.
 double getMin()
          Returns the value of the min property.
 void setMax(double value)
          Sets the max property to the given value.
 void setMin(double value)
          Sets the min property to the given value.
 
Methods inherited from interface com.sap.tc.webdynpro.progmodel.api.IWDUIElement
bindEnabled, bindEnabled, bindingOfEnabled, bindingOfTooltip, bindingOfVisible, bindTooltip, bindTooltip, bindVisible, bindVisible, createLayoutData, getContainer, getEnabled, getLayoutData, getTooltip, getVisible, setEnabled, setTooltip, setVisible
 
Methods inherited from interface com.sap.tc.webdynpro.progmodel.api.IWDViewElement
destroy, getId, getView, requestFocus
 

Field Detail

DEFAULT_MAX

public static final double DEFAULT_MAX
Default value of the max property is 100.0.

See Also:
Constant Field Values

DEFAULT_MIN

public static final double DEFAULT_MIN
Default value of the min property is 0.0.

See Also:
Constant Field Values
Method Detail

bindMax

public void bindMax(String path)
Binds the max property to the context attribute specified by the given path.

Parameters:
path - the context path of the attribute to which the max property will be bound

bindMax

public void bindMax(IWDAttributeInfo attributeInfo)
Binds the max property to the context attribute specified by the given attribute info.

Parameters:
attributeInfo - the info of the context attribute to which the max property will be bound

bindingOfMax

public String bindingOfMax()
Returns the binding path of the max property.

Returns:
the path of the context attribute to which the max property is currently bound

getMax

public double getMax()
Returns the value of the max property.

The initial value is 100.0.

The maximum value of the Range Control.

Returns:
the current value of the max property
See Also:
setMax(double)

setMax

public void setMax(double value)
Sets the max property to the given value.

Parameters:
value - the new value of the max property
See Also:
getMax()

bindMin

public void bindMin(String path)
Binds the min property to the context attribute specified by the given path.

Parameters:
path - the context path of the attribute to which the min property will be bound

bindMin

public void bindMin(IWDAttributeInfo attributeInfo)
Binds the min property to the context attribute specified by the given attribute info.

Parameters:
attributeInfo - the info of the context attribute to which the min property will be bound

bindingOfMin

public String bindingOfMin()
Returns the binding path of the min property.

Returns:
the path of the context attribute to which the min property is currently bound

getMin

public double getMin()
Returns the value of the min property.

The initial value is 0.0.

The minimum value of the Range Control.

Returns:
the current value of the min property
See Also:
setMin(double)

setMin

public void setMin(double value)
Sets the min property to the given value.

Parameters:
value - the new value of the min property
See Also:
getMin()


Copyright 2006 SAP AG Complete Copyright Notice