| java.lang.Object org.tigris.scarab.util.build.l10nchecker.L10nMessage
L10nMessage | public class L10nMessage (Code) | | Interface that contains a message (information, warning, error) that can be
created during initialisation
author: sreindl |
Constructor Summary | |
public | L10nMessage(int lineNo, L10nIssue issue) Create a message of type INFORMATION at line #lineNo with message
#issue. |
L10nMessage | public L10nMessage(int lineNo, L10nIssue issue)(Code) | | Create a message of type INFORMATION at line #lineNo with message
#issue.
Parameters: lineNo - The line where the message appeared Parameters: issue - The issue to be created. |
getIssue | public L10nIssue getIssue()(Code) | | Return the issue assiciated to this message.
Returns the issue. |
getL10nObject | public L10nKey getL10nObject()(Code) | | Set the message text.
Returns the l10nObject. |
getLineNumber | public int getLineNumber()(Code) | | Return the line number.
Returns the lineNumber. |
getMessageText | public String getMessageText()(Code) | | Return the message text.
Returns the messageText. |
setL10nObject | public void setL10nObject(L10nKey object)(Code) | | Return the corresponding L10nKey.
Parameters: object - The l10nKey to set. |
setLineNumber | public void setLineNumber(int lineNumber)(Code) | | Set the line number
Parameters: lineNumber - The lineNumber to set. |
|
|