Class HostMap::Ui::BaseUi
In: lib/ui/base.rb
Parent: Object

User interface abstract class to provide a base to develop UI.

Methods

run   stop  

Public Instance methods

Executes the user interface.

[Source]

# File lib/ui/base.rb, line 16
      def run
        raise NotImplementedError
      end

Stops the user interface.

[Source]

# File lib/ui/base.rb, line 23
      def stop
      end

[Validate]