PageRenderTime 18ms CodeModel.GetById 13ms app.highlight 5ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-3-pre5/org/gjt/sp/jedit/msg/CaretChanging.java

#
Java | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | 396bfe719c910bd1b75f04f54e1dd01a MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
 1package org.gjt.sp.jedit.msg;
 2
 3import org.gjt.sp.jedit.textarea.JEditTextArea;
 4
 5public class CaretChanging extends TextAreaUpdate
 6{
 7	JEditTextArea jta;
 8	int caret;
 9	public CaretChanging(JEditTextArea jta) {
10		super(jta, TextAreaUpdate.CARET_CHANGING);
11		this.jta = jta;
12		caret = jta.getCaretPosition();
13	}
14
15}