Class ArrayDriverInstaller

    • Constructor Summary

      Constructors 
      Constructor Description
      ArrayDriverInstaller​(java.lang.String[] ids, java.lang.Object[] drivers)
      Constructs an ArrayDriverInstaller object.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void install()
      Installs drivers from the array passed into constructor.
      • Methods inherited from class java.lang.Object

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

      • ArrayDriverInstaller

        public ArrayDriverInstaller​(java.lang.String[] ids,
                                    java.lang.Object[] drivers)
        Constructs an ArrayDriverInstaller object. Both parameter arrays mush have same length, drivers must keep instances of Driver or LightDriver implementations.
        Parameters:
        ids - an array of driver IDs
        drivers - an array of drivers.
    • Method Detail

      • install

        public void install()
        Installs drivers from the array passed into constructor.
        Specified by:
        install in interface DriverInstaller