This commit is contained in:
hneemann 2016-07-08 08:42:35 +02:00
parent c16800088b
commit cd74d176d1

View File

@ -30,15 +30,15 @@ import java.util.HashMap;
public class TextLineNumber extends JPanel public class TextLineNumber extends JPanel
implements CaretListener, DocumentListener, PropertyChangeListener { implements CaretListener, DocumentListener, PropertyChangeListener {
/** /**
* Constant to left align the numbers * Constant to left align the digits
*/ */
public final static float LEFT = 0.0f; public final static float LEFT = 0.0f;
/** /**
* Constant to center the numbers * Constant to center the digits
*/ */
public final static float CENTER = 0.5f; public final static float CENTER = 0.5f;
/** /**
* Constant to right align the numbers * Constant to right align the digits
*/ */
public final static float RIGHT = 1.0f; public final static float RIGHT = 1.0f;