com.plumtree.openfoundation.internationalization
Interface IXPResourceSet

All Known Implementing Classes:
XPResourceSet

public interface IXPResourceSet

Interface modeling XPResourceSet.


Method Summary
 java.lang.String GetString(int ikey)
          Returns the string value associated with the given key.
 java.lang.String GetString(java.lang.String key)
          Returns the string value associated with the given key.
 java.lang.String GetString(java.lang.String key, java.lang.Object argValue0)
          Returns the string associated with the given key and the placeholder {0} replaced with the given argument value.
 java.lang.String GetString(java.lang.String key, java.lang.Object argValue0, java.lang.Object argValue1)
          Returns the string associated with the given key and the placeholders {0} and {1} replaced with the given argument values.
 java.lang.String GetString(java.lang.String key, java.lang.Object argValue0, java.lang.Object argValue1, java.lang.Object argValue2)
          Returns the string associated with the given key and the placeholders {0}, {1} and {2} replaced with the given argument values.
 java.lang.String GetString(java.lang.String key, java.lang.Object argValue0, java.lang.Object argValue1, java.lang.Object argValue2, java.lang.Object argValue3)
          Returns the string associated with the given key and the placeholders {0}, {1}, {2} and {3} replaced with the given argument values.
 

Method Detail

GetString

public java.lang.String GetString(java.lang.String key)
Returns the string value associated with the given key.

Parameters:
key - The key used to lookup the value
Returns:
The string value associated with the given key

GetString

public java.lang.String GetString(int ikey)
Returns the string value associated with the given key.

Parameters:
ikey - The key used to lookup the value
Returns:
The string value associated with the given key

GetString

public java.lang.String GetString(java.lang.String key,
                                  java.lang.Object argValue0)
Returns the string associated with the given key and the placeholder {0} replaced with the given argument value.

Parameters:
key - The key used to lookup the value
argValue0 - The argument value for the placeholder {0}
Returns:
The string value associated with the given key and the placeholder {0} replaced with the given argument value.

GetString

public java.lang.String GetString(java.lang.String key,
                                  java.lang.Object argValue0,
                                  java.lang.Object argValue1)
Returns the string associated with the given key and the placeholders {0} and {1} replaced with the given argument values.

Parameters:
key - The key used to lookup the value
argValue0 - The argument value for the placeholder {0}
argValue1 - The argument value for the placeholder {1}
Returns:
The string value associated with the given key and the placeholders {0} and {1} replaced with the given argument values.

GetString

public java.lang.String GetString(java.lang.String key,
                                  java.lang.Object argValue0,
                                  java.lang.Object argValue1,
                                  java.lang.Object argValue2)
Returns the string associated with the given key and the placeholders {0}, {1} and {2} replaced with the given argument values.

Parameters:
key - The key used to lookup the value
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:
The string value associated with the given key and the placeholders {0}, {1} and {2} replaced with the given argument values.

GetString

public java.lang.String GetString(java.lang.String key,
                                  java.lang.Object argValue0,
                                  java.lang.Object argValue1,
                                  java.lang.Object argValue2,
                                  java.lang.Object argValue3)
Returns the string associated with the given key and the placeholders {0}, {1}, {2} and {3} replaced with the given argument values.

Parameters:
key - The key used to lookup the value
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:
The string value associated with the given key and the placeholders {0}, {1}, {2} and {3} replaced with the given argument values.


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