Class: HeaderPanel

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

Overview

Panel for top of main application window containing a large title.

Instance Method Summary collapse

Constructor Details

#initializeHeaderPanel

Returns a new instance of HeaderPanel.



119
120
121
122
123
124
125
# File 'lib/life_game_viewer/view/life_game_viewer_frame.rb', line 119

def initialize
  super(BorderLayout.new)
  label = JLabel.new("<html><h2>Conway's Game of Life Viewer</h2></html")
  inner_panel = JPanel.new
  inner_panel.add(label)
  add(inner_panel, BorderLayout::CENTER)
end