Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@
import org.reactfx.SuspendableEventStream;
import org.reactfx.SuspendableNo;
import org.reactfx.collection.LiveList;
import org.reactfx.collection.SuspendableList;
import org.reactfx.util.Tuple2;
import org.reactfx.value.SuspendableVal;
import org.reactfx.value.SuspendableVar;
Expand Down
2 changes: 0 additions & 2 deletions richtextfx/src/main/java/org/fxmisc/richtext/ViewActions.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
import javafx.scene.control.ContextMenu;
import javafx.scene.input.MouseEvent;
import javafx.scene.text.TextFlow;
import org.fxmisc.richtext.model.Codec;
import org.fxmisc.richtext.model.NavigationActions;
import org.reactfx.util.Tuple2;
import org.reactfx.value.Val;
import org.reactfx.value.Var;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
/**
* Provides a basic implementation of {@link EditableStyledDocument}. See {@link SimpleEditableStyledDocument} for
* a version that is specified for {@link StyledText}.
* @param <PS>
* @param <SEG>
* @param <S>
* @param <PS> type of style that can be applied to paragraphs (e.g. {@link javafx.scene.text.TextFlow}.
* @param <SEG> type of segment used in {@link Paragraph}. Can be only {@link org.fxmisc.richtext.TextExt text}
* (plain or styled) or a type that combines text and other {@link javafx.scene.Node}s.
* @param <S> type of style that can be applied to a segment.
*/
public final class GenericEditableStyledDocument<PS, SEG, S> extends GenericEditableStyledDocumentBase<PS, SEG, S>
implements EditableStyledDocument<PS, SEG, S> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import java.util.Collections;
import java.util.List;

import javafx.collections.ObservableList;
import org.reactfx.EventSource;
import org.reactfx.EventStream;
import org.reactfx.Subscription;
Expand All @@ -24,9 +23,6 @@
import org.reactfx.value.SuspendableVal;
import org.reactfx.value.Val;

/**
* Provides an implementation of {@link EditableStyledDocument}
*/
class GenericEditableStyledDocumentBase<PS, SEG, S> implements EditableStyledDocument<PS, SEG, S> {

private class ParagraphList
Expand Down