org.fxmisc.richtext.model.StyleSpan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of richtextfx Show documentation
Show all versions of richtextfx Show documentation
Rich-text area for JavaFX
package org.fxmisc.richtext.model;
import java.util.Objects;
/**
* Essentially, a {@link org.reactfx.util.Tuple2} of a given style {@link S} that spans a given length.
*
* @param the style type
*/
public class StyleSpan {
private final S style;
private final int length;
/**
* Creates a style span. Note: length cannot be negative.
*/
public StyleSpan(S style, int length) {
if(length < 0) {
throw new IllegalArgumentException("StyleSpan's length cannot be negative");
}
this.style = style;
this.length = length;
}
public S getStyle() {
return style;
}
public int getLength() {
return length;
}
/**
* Two {@code StyleSpan}s are considered equal if they have equal length and
* equal style.
*/
@Override
public boolean equals(Object other) {
if(other instanceof StyleSpan) {
StyleSpan> that = (StyleSpan>) other;
return this.length == that.length
&& Objects.equals(this.style, that.style);
} else {
return false;
}
}
@Override
public int hashCode() {
return Objects.hash(style, length);
}
@Override
public String toString() {
return String.format("StyleSpan[length=%s, style=%s]", length, style);
}
}