/**
  * Creates a new instance of IncompletesWindow
  *
  * @param p_board_frame a {@link gui.BoardFrame} object.
  */
 public WindowClearanceViolations(BoardFrame p_board_frame) {
   super(p_board_frame);
   this.resources =
       java.util.ResourceBundle.getBundle(
           "gui.resources.WindowClearanceViolations", p_board_frame.get_locale());
   this.setTitle(resources.getString("title"));
   this.list_empty_message.setText(resources.getString("list_empty_message"));
   p_board_frame.set_context_sensitive_help(this, "WindowObjectList_ClearanceViolations");
 }