First page Back Continue Last page Summary Graphics
Guidelines, JavaDoc
Use JavaDoc to document your classes/methodsclass sample
(at end of imports-section)
/**
Class for localizing text and formats
*/
method sample (before method declaration)
/**
Retreive a resource-text in current language.
For tight loops (increased performance) use getText(int,int).
@param piResourceID Retreive text corresponding to resourceID in current language
@return translated text
@see getText(int,int)
@---------------------------------------------------
Changed:
SH 13.04.1999 Tuned + improved error handling
SH 18.01.1999 Initial
*/
public String getText(int piResourceID)
.
Notes: