blob: a96b53f024af71cace40f86874c46e520b0161f1 [file] [log] [blame]
package com.intellij.ui;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
public interface ColoredTextContainer {
void append(@NotNull String fragment, @NotNull SimpleTextAttributes attributes);
void append(@NotNull String fragment, @NotNull SimpleTextAttributes attributes, Object tag);
void setIcon(@Nullable Icon icon);
void setToolTipText(@Nullable String text);
}