The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

PRE_UGLI_MOVE :: src / java / org / apache / log4j / chainsaw /

BasicPrefPanel.java

/*
 */
package org.apache.log4j.chainsaw;

import javax.swing.JPanel;


/**
 * All of the Preferences panels used in this class extend from
 * this, it is used to provide standard L&F required by all.
 * @author Paul Smith
 *
 */
public abstract class BasicPrefPanel extends JPanel {
  private String title;

  protected BasicPrefPanel(String title) {
    //    	setBorder(BorderFactory.createLineBorder(Color.red));
    this.title = title;
  }
  /**
   * @return Returns the title.
   */
  public final String getTitle()
  {
    return title;
  }
  /**
   * @param title The title to set.
   */
  public final void setTitle(String title)
  {
    this.title = title;
  }
  
  public String toString() {
    return getTitle();
  }
}
[See repo JSON]