Package com.microstrategy.web.app.gui
Class CartElementAttribute
- java.lang.Object
-
- com.microstrategy.web.app.gui.CartElementAttribute
-
- All Implemented Interfaces:
CartElement
public class CartElementAttribute extends java.lang.Object implements CartElement
Title: CartElementAttribute.
Description:
Copyright: Copyright (c) 2002
Company: Microstrategy, Inc.
- Since:
- MicroStrategy Web 8.0.0
-
-
Constructor Summary
Constructors Constructor Description CartElementAttribute(java.lang.String data)
Class constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDisplayName()
Get display name to be used in HTML field.java.lang.String
getValue()
Gets formatted text for value field.boolean
isSelected()
Indicates whether given Cart element is selected or not.void
setSelected(boolean flag)
Define if the element is selected or not
-
-
-
Method Detail
-
getDisplayName
public java.lang.String getDisplayName()
Description copied from interface:CartElement
Get display name to be used in HTML field.- Specified by:
getDisplayName
in interfaceCartElement
- Returns:
String
value with the display name for the element attribute
-
getValue
public java.lang.String getValue()
Description copied from interface:CartElement
Gets formatted text for value field.- Specified by:
getValue
in interfaceCartElement
- Returns:
String
value for the element attribute
-
isSelected
public boolean isSelected()
Description copied from interface:CartElement
Indicates whether given Cart element is selected or not.- Specified by:
isSelected
in interfaceCartElement
- Returns:
boolean
value indicating if the element is selected or not. By default returnsFalse
-
setSelected
public void setSelected(boolean flag)
Define if the element is selected or not- Specified by:
setSelected
in interfaceCartElement
- Parameters:
flag
-boolean
value indicating if the element is selected or not.
-
-