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 int
getDefaultStatus()
get the default status of feature infojava.lang.String
getDesc()
get the description of feature infojava.lang.String
getDisclaim()
get the disclaimer of feature infojava.lang.String
getFeedbackURL()
get the URL of feedback page of this particular featurejava.lang.String
getHelpURL()
get the URL of help page of this particular featurejava.lang.String
getID()
get the ID of feature infoint
getIsInternal()
whether the feature info is internel feature or external feature.java.lang.String
getName()
get the name of feature infoint
getStatus()
get the status of feature infoboolean
isDirty()
check whether this feature info is changed.void
setDefaultStatus(int _default)
set the default status value of feature infovoid
setDesc(java.lang.String _desc)
set description of the feature infovoid
setDisclaim(java.lang.String _disclaim)
set the disclaim of feature infovoid
setID(java.lang.String _id)
set the feature info idvoid
setIsInternal(int _isInternal)
set the internal value of feature infovoid
setName(java.lang.String _name)
set the feature info namevoid
setStatus(int _status)
set the status of feature infovoid
setStatusAsDefault()
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
-
-
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.
-
-