Class: StatusAndLinksPanel

Inherits:
JPanel
  • Object
show all
Defined in:
lib/life_game_viewer/view/life_game_viewer_frame.rb

Instance Method Summary collapse

Constructor Details

#initialize(table_model) ⇒ StatusAndLinksPanel

Returns a new instance of StatusAndLinksPanel.



288
289
290
291
292
# File 'lib/life_game_viewer/view/life_game_viewer_frame.rb', line 288

def initialize(table_model)
  super(BorderLayout.new)
  add(StatusLabel.new(table_model), BorderLayout::WEST)
  add(LinkPanel.new, BorderLayout::EAST)
end