All Packages Class Hierarchy This Package Previous Next Index
Interface com.lgeds.jdf.Message
- public interface Message
- Author:
- WonYoung Lee, wyounglee@lgeds.lg.co.kr.
-
getCode()
- Returns the messge key string.
-
setArg(String, String)
- Set the key=value pairs.
-
setCode(String)
- Set the message code key.
-
toString()
- Returns the translated actual string.
getCode
public abstract String getCode()
- Returns the messge key string.
- Returns:
- The messge key string.
setArg
public abstract void setArg(String key,
String value)
- Set the key=value pairs.
- key : message key string defined in the message definition file.
- value : the actual string that you want to be replaced.
- Parameters:
- key - the string of key defined in the message definition file.
- value - the actual string which you want to be replaced.
setCode
public abstract void setCode(String code)
- Set the message code key.
- Parameters:
- code - the code string which defined in the message definition file.
toString
public abstract String toString()
- Returns the translated actual string.
- Returns:
- a string representation of the receiver
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index