Package com.microstrategy.web.objects
Interface FeatureInfo
-
- All Known Implementing Classes:
FeatureInfoImpl
public interface FeatureInfo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAbbreviation()Get the abbreviation of the feature info.intgetDefaultStatus()get the default status of feature infojava.lang.StringgetDesc()get the description of feature infojava.lang.StringgetDisclaim()get the disclaimer of feature infojava.lang.StringgetFeedbackURL()get the URL of feedback page of this particular featurejava.lang.StringgetHelpURL()get the URL of help page of this particular featurejava.lang.StringgetID()get the ID of feature infointgetIsInternal()whether the feature info is internel feature or external feature.java.lang.StringgetName()get the name of feature infointgetStatus()get the status of feature infobooleanisDirty()check whether this feature info is changed.voidsetAbbreviation(java.lang.String _abbreviation)Set the feature info abbreviation.voidsetDefaultStatus(int _default)set the default status value of feature infovoidsetDesc(java.lang.String _desc)set description of the feature infovoidsetDisclaim(java.lang.String _disclaim)set the disclaim of feature infovoidsetID(java.lang.String _id)set the feature info idvoidsetIsInternal(int _isInternal)set the internal value of feature infovoidsetName(java.lang.String _name)set the feature info namevoidsetStatus(int _status)set the status of feature infovoidsetStatusAsDefault()set default status to status.
-
-
-
Method Detail
-
getID
java.lang.String getID()
get the ID of feature info- Returns:
- the ID of feature info
-
setID
void setID(java.lang.String _id)
set the feature info id- Parameters:
_id-
-
getAbbreviation
java.lang.String getAbbreviation()
Get the abbreviation of the feature info.- Returns:
- the abbreviation of the feature info
-
setAbbreviation
void setAbbreviation(java.lang.String _abbreviation)
Set the feature info abbreviation.- Parameters:
_abbreviation- the abbreviation
-
getName
java.lang.String getName()
get the name of feature info- Returns:
- the name of feature info
-
setName
void setName(java.lang.String _name)
set the feature info name- Parameters:
_name-
-
getDesc
java.lang.String getDesc()
get the description of feature info- Returns:
- the description of feature info
-
setDesc
void setDesc(java.lang.String _desc)
set description of the feature info- Parameters:
_desc-
-
getDisclaim
java.lang.String getDisclaim()
get the disclaimer of feature info- Returns:
- the disclaimer of feature info
-
setDisclaim
void setDisclaim(java.lang.String _disclaim)
set the disclaim of feature info- Parameters:
_disclaim-
-
getDefaultStatus
int getDefaultStatus()
get the default status of feature info- Returns:
- the default status of feature info
-
setDefaultStatus
void setDefaultStatus(int _default)
set the default status value of feature info- Parameters:
_default-
-
getIsInternal
int getIsInternal()
whether the feature info is internel feature or external feature.- Returns:
- whether the feature info is internel feature or external feature
-
setIsInternal
void setIsInternal(int _isInternal)
set the internal value of feature info- Parameters:
_isInternal-
-
getStatus
int getStatus()
get the status of feature info- Returns:
- the status of feature info
-
getHelpURL
java.lang.String getHelpURL()
get the URL of help page of this particular feature- Returns:
- URL of help page of this particular feature
-
getFeedbackURL
java.lang.String getFeedbackURL()
get the URL of feedback page of this particular feature- Returns:
- URL of feedback page of this particular feature
-
isDirty
boolean isDirty()
check whether this feature info is changed.- Returns:
- whether this feature info is changed.
-
setStatus
void setStatus(int _status)
set the status of feature info- Parameters:
_status-
-
setStatusAsDefault
void setStatusAsDefault()
set default status to status.
-
-