com.plumtree.openfoundation.internationalization
Interface IXPResourceManager

All Known Implementing Classes:
XPResourceManager

public interface IXPResourceManager

Interface modeling an XPResourceManager.


Method Summary
 java.lang.String GetString(int messageID, java.lang.String messageFileName, java.lang.String language)
          Returns the string corresponding to the given message ID, message file index or name and the language.
 java.lang.String GetString(int messageID, java.lang.String messageFileName, java.lang.String language, java.lang.Object argValue0)
          Returns the string corresponding to the given message ID, message file index or name and the language.
 java.lang.String GetString(int messageID, java.lang.String messageFileName, java.lang.String language, java.lang.Object argValue0, java.lang.Object argValue1)
          Returns the string corresponding to the given message ID, message file index or name and the language.
 java.lang.String GetString(int messageID, java.lang.String messageFileName, java.lang.String language, java.lang.Object argValue0, java.lang.Object argValue1, java.lang.Object argValue2)
          Returns the string corresponding to the given message ID, message file index or name and the language.
 java.lang.String GetString(int messageID, java.lang.String messageFileName, java.lang.String language, java.lang.Object argValue0, java.lang.Object argValue1, java.lang.Object argValue2, java.lang.Object argValue3)
          Returns the string corresponding to the given message ID, message file index or name and the language.
 

Method Detail

GetString

java.lang.String GetString(int messageID,
                           java.lang.String messageFileName,
                           java.lang.String language)
Returns the string corresponding to the given message ID, message file index or name and the language.

Parameters:
messageID - ID of the message
messageFileName - File Name of the message file that contains the string messages
language - Language of the string messages (e.g. en, fr etc.)
Returns:
String corresponding to the given messsage ID, message file name and the language

GetString

java.lang.String GetString(int messageID,
                           java.lang.String messageFileName,
                           java.lang.String language,
                           java.lang.Object argValue0)
Returns the string corresponding to the given message ID, message file index or name and the language.

Parameters:
messageID - ID of the message
messageFileName - File Name of the message file that contains the string messages
language - Language of the string messages (e.g. en, fr etc.)
argValue0 - The argument value for the placeholder {0}
Returns:
String corresponding to the given messsage ID, message file index or name, language and the placeholder {0} replaced with the given argument value. value.

GetString

java.lang.String GetString(int messageID,
                           java.lang.String messageFileName,
                           java.lang.String language,
                           java.lang.Object argValue0,
                           java.lang.Object argValue1)
Returns the string corresponding to the given message ID, message file index or name and the language.

Parameters:
messageID - ID of the message
messageFileName - File Name of the message file that contains the string messages
language - Language of the string messages (e.g. en, fr etc.)
argValue0 - The argument value for the placeholder {0}
argValue1 - The argument value for the placeholder {1}
Returns:
String corresponding to the given messsage ID, message file index or name, language and the placeholder {0} and {1} replaced with the given argument values. value.

GetString

java.lang.String GetString(int messageID,
                           java.lang.String messageFileName,
                           java.lang.String language,
                           java.lang.Object argValue0,
                           java.lang.Object argValue1,
                           java.lang.Object argValue2)
Returns the string corresponding to the given message ID, message file index or name and the language.

Parameters:
messageID - ID of the message
messageFileName - File Name of the message file that contains the string messages
language - Language of the string messages (e.g. en, fr etc.)
argValue0 - The argument value for the placeholder {0}
argValue1 - The argument value for the placeholder {1}
argValue2 - The argument value for the placeholder {2}
Returns:
String corresponding to the given messsage ID, message file index or name, language and the placeholder {0}, {1} and {2} replaced with the given argument values. value.

GetString

java.lang.String GetString(int messageID,
                           java.lang.String messageFileName,
                           java.lang.String language,
                           java.lang.Object argValue0,
                           java.lang.Object argValue1,
                           java.lang.Object argValue2,
                           java.lang.Object argValue3)
Returns the string corresponding to the given message ID, message file index or name and the language.

Parameters:
messageID - ID of the message
messageFileName - File Name of the message file that contains the string messages
language - Language of the string messages (e.g. en, fr etc.)
argValue0 - The argument value for the placeholder {0}
argValue1 - The argument value for the placeholder {1}
argValue2 - The argument value for the placeholder {2}
argValue3 - The argument value for the placeholder {3}
Returns:
String corresponding to the given messsage ID, message file index or name, language and the placeholder {0}, {1}, {2} and {3} replaced with the given argument values. value.


Copyright © 2002, 2003, 2004 Plumtree Software Inc. All Rights Reserved.