All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jscl.editor.ParagraphView Maven / Gradle / Ivy

The newest version!
package jscl.editor;

import javax.swing.text.Element;

class ParagraphView extends javax.swing.text.ParagraphView {
	public ParagraphView(Element elem) {
		super(elem);
	}

	@Override
	public float nextTabStop(float x, int tabOffset) {
		return getTabBase() + (((int)x / 64 + 1) * 64);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy