ButtonGroup buttonGroup = new ButtonGroup();
consoleOutputButton_ = createRadioButton("CONSOLE");
windowOutputButton_ = createRadioButton("SEPARATE_WINDOW");
fileOutputButton_ = createRadioButton("THIS_FILE");
p.add( new RadioButtonPanel( consoleOutputButton_, buttonGroup, true ) );
p.add( new RadioButtonPanel( windowOutputButton_, buttonGroup, false ) );
p.add( new RadioButtonPanel( fileOutputButton_, buttonGroup, false ) );
logDestination_ = GameContext.getLogger().getDestination();
switch (logDestination_) {
case Log.LOG_TO_CONSOLE:
consoleOutputButton_.setSelected( true );
break;