blob: 2ac36d23efa088ea1b7b0351d6cef531a977fc7c [file] [log] [blame]
package org.apache.taverna.ui.perspectives.myexperiment;
import javax.swing.text.html.HTMLEditorKit;
import javax.swing.text.html.StyleSheet;
public class StyledHTMLEditorKit extends HTMLEditorKit {
private final StyleSheet styleSheet;
public StyledHTMLEditorKit(StyleSheet styleSheet) {
this.styleSheet = styleSheet;
}
@Override
public StyleSheet getStyleSheet() {
return styleSheet;
}
}