class EmuCtl::Emulator

Attributes

api_lvl[RW]
os_name[RW]
qualifier[RW]
sdk[RW]

Public Class Methods

new(qual, api_lvl, os_name, sdk) click to toggle source
# File lib/emu_ctl/model.rb, line 45
def initialize(qual, api_lvl, os_name, sdk)
  @qualifier = qual
  @api_lvl = api_lvl
  @os_name = os_name
  @sdk = sdk
end

Public Instance Methods

to_s() click to toggle source
# File lib/emu_ctl/model.rb, line 52
def to_s
  "#{qualifier}: Running #{os_name} on API Level #{api_lvl} with sdk #{sdk}"
end