FileDocCategorySizeDatePackage
Support.javaAPI DocGlassfish v2 API4325Fri May 04 22:34:38 BST 2007com.sun.jdo.api.persistence.enhancer.util

Support

public class Support extends Assertion
Basic support for enhancer implementation.

Fields Summary
public static final Timer
timer
private static ResourceBundle
MESSAGES
I18N message handler
Constructors Summary
Methods Summary
protected static final java.lang.StringgetI18N(java.lang.String key)
Returns the I18N message.



         
    
    
        try
        {
            MESSAGES = I18NHelper.loadBundle(
                "com.sun.jdo.api.persistence.enhancer.Bundle", //NOI18N
                Support.class.getClassLoader());
        }
        catch (java.util.MissingResourceException ex)
        {
            ex.printStackTrace ();
        }
    
        return I18NHelper.getMessage(MESSAGES, key);
    
protected static final java.lang.StringgetI18N(java.lang.String key, java.lang.String arg)
Returns the I18N message.

        return I18NHelper.getMessage(MESSAGES, key, arg);
    
protected static final java.lang.StringgetI18N(java.lang.String key, java.lang.String arg1, java.lang.String arg2)
Returns the I18N message.

        return I18NHelper.getMessage(MESSAGES, key, arg1, arg2);
    
protected static final java.lang.StringgetI18N(java.lang.String key, java.lang.String arg1, java.lang.String arg2, java.lang.String arg3)
Returns the I18N message.

        return I18NHelper.getMessage(MESSAGES, key, arg1, arg2, arg3);
    
protected static final java.lang.StringgetI18N(java.lang.String key, int arg1, java.lang.String arg2)
Returns the I18N message.

        return I18NHelper.getMessage(MESSAGES, key,
                                     new Object[]{new Integer(arg1), arg2});
    
protected static final java.lang.StringgetI18N(java.lang.String key, java.lang.Object[] args)
Returns the I18N message.

        return I18NHelper.getMessage(MESSAGES, key, args);