Package jmri.util.usb

Class UsbBrowserStartupActionFactory

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Class<?>[] getActionClasses()
      Get the classes this factory supports.
      java.lang.String[] getOverriddenClasses​(java.lang.Class<?> clazz)
      Get startup actions overridden by the given class.
      java.lang.String getTitle​(java.lang.Class<?> clazz, java.util.Locale locale)
      Get the title for the given class.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getTitle

        public java.lang.String getTitle​(java.lang.Class<?> clazz,
                                         java.util.Locale locale)
                                  throws java.lang.IllegalArgumentException
        Description copied from interface: StartupActionFactory
        Get the title for the given class.
        Parameters:
        clazz - the class
        locale - the desired locale for the title
        Returns:
        the title in the given locale
        Throws:
        java.lang.IllegalArgumentException - if the class is not supported by this factory
      • getActionClasses

        public java.lang.Class<?>[] getActionClasses()
        Description copied from interface: StartupActionFactory
        Get the classes this factory supports.
        Returns:
        the supported classes or an empty array
      • getOverriddenClasses

        public java.lang.String[] getOverriddenClasses​(java.lang.Class<?> clazz)
                                                throws java.lang.IllegalArgumentException
        Description copied from class: AbstractStartupActionFactory
        Get startup actions overridden by the given class. This is designed to allow a new class to replace a deprecated class.

        Note: the behavior is undefined if multiple classes override a single class.

        This implementation returns an empty array.

        Specified by:
        getOverriddenClasses in interface StartupActionFactory
        Overrides:
        getOverriddenClasses in class AbstractStartupActionFactory
        Parameters:
        clazz - the class
        Returns:
        an empty array
        Throws:
        java.lang.IllegalArgumentException - if the class is not supported by this factory