Package com.saperion.intf.wf
Interface CommentInfo
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CommentInfoImpl
public interface CommentInfo extends java.io.Serializable
Comments information for a given task.- Author:
- rbo
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCommentKind()
int
getCommentLevel()
java.lang.String
getCommentString()
java.util.Date
getDate()
int
getHistId()
int
getIndex()
java.lang.String
getUser()
-
-
-
Method Detail
-
getIndex
int getIndex()
- Returns:
- the index
-
getDate
java.util.Date getDate()
- Returns:
- the date
-
getUser
java.lang.String getUser()
- Returns:
- the user
-
getCommentKind
int getCommentKind()
- Returns:
- the commentKind
-
getCommentLevel
int getCommentLevel()
- Returns:
- the commentLevel
-
getHistId
int getHistId()
- Returns:
- the histId
-
getCommentString
java.lang.String getCommentString()
- Returns:
- the commentString
-
-