Searched refs:JEditorPane (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/jdk/test/javax/swing/text/html/HRuleView/
H A DTest5062055.java47 JEditorPane jep = new JEditorPane();
/openjdk7/jdk/test/javax/swing/text/html/parser/Parser/6990651/
H A Dbug6990651.java34 private static volatile JEditorPane editor;
39 editor = new JEditorPane("text/html", "Hello world!");
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DEditorKit.java29 import javax.swing.JEditorPane;
75 * a JEditorPane.
77 * @param c the JEditorPane
79 public void install(JEditorPane c) {
84 * JEditorPane. This is used to unregister any
87 * @param c the JEditorPane
89 public void deinstall(JEditorPane c) {
H A DStyledEditorKit.java34 import javax.swing.JEditorPane;
108 * a JEditorPane.
110 * @param c the JEditorPane
112 public void install(JEditorPane c) {
124 * JEditorPane. This is used to unregister any
127 * @param c the JEditorPane
129 public void deinstall(JEditorPane c) {
354 * An action that assumes it's being fired on a JEditorPane
359 * a StyledDocument, a JEditorPane, or a StyledEditorKit
364 * can be narrowed to a JEditorPane typ
[all...]
/openjdk7/jdk/test/javax/swing/DataTransfer/6456844/
H A Dbug6456844.java40 JEditorPane ep = new JEditorPane();
/openjdk7/jdk/test/javax/swing/JLayer/6824395/
H A Dbug6824395.java49 JEditorPane editorPane = new JEditorPane();
57 JLayer<JEditorPane> editorPaneLayer = new JLayer<JEditorPane>(editorPane);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DVMFlagsPanel.java35 private JEditorPane flagsPane;
43 flagsPane = new JEditorPane();
H A DVMVersionInfoPanel.java35 private JEditorPane versionPane;
43 versionPane = new JEditorPane();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFrameView.java48 JEditorPane htmlPane;
78 JEditorPane host = getHostPane();
114 JEditorPane getHostPane() {
116 while ((c != null) && ! (c instanceof JEditorPane)) {
119 return (JEditorPane) c;
163 * then the JEditorPane's margin's are set to the new values.
254 JEditorPane getOutermostJEditorPane() {
265 return (JEditorPane)frameSetView.getContainer();
284 * JEditorPane, and then fires an HTMLFrameHyperlinkEvent
288 * firing the event to the outermost JEditorPane, thi
[all...]
H A DIsindexView.java108 JEditorPane pane = (JEditorPane)getContainer();
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksHelp.java72 JEditorPane html;
78 html = new JEditorPane(url);
81 html.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES,
/openjdk7/jdk/test/javax/swing/text/html/8008289/
H A Dbug8008289.java32 import javax.swing.JEditorPane;
49 private static JEditorPane html;
57 html = new JEditorPane("text/html",
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DHTMLPane.java33 public class HTMLPane extends JEditorPane {
59 // JEditorPane does not automatically pick up fg color
/openjdk7/jdk/src/share/classes/sun/swing/text/
H A DTextComponentPrintable.java54 import javax.swing.JEditorPane;
161 if (textComponent instanceof JEditorPane
165 List<JEditorPane> frames = getFrames((JEditorPane) textComponent);
168 for (JEditorPane frame : frames) {
202 * @param editor the {@JEditorPane} to find the frames for
205 private static List<JEditorPane> getFrames(final JEditorPane editor) {
206 List<JEditorPane> list = new ArrayList<JEditorPane>();
[all...]
/openjdk7/jdk/test/javax/swing/JEditorPane/6917744/
H A Dbug6917744.java41 private static JEditorPane editorPane;
57 editorPane = new JEditorPane();
/openjdk7/jdk/test/javax/swing/text/CSSBorder/6796710/
H A Dbug6796710.java27 * @summary Html content in JEditorPane is overlapping on swing components while resizing the application.
40 // The page is inlined because we want to be sure that the JEditorPane filled synchronously
80 JEditorPane editorPane = new JEditorPane();
/openjdk7/jdk/test/javax/swing/text/html/CSS/4530474/
H A Dbug4530474.java42 private static JEditorPane jep;
98 jep = new JEditorPane();
/openjdk7/jdk/test/javax/swing/text/html/
H A DTest4783068.java59 JEditorPane pane = new JEditorPane("text/html", html);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicEditorPaneUI.java40 * Provides the look and feel for a JEditorPane.
106 * currently set in the associated JEditorPane.
112 JEditorPane pane = (JEditorPane) getComponent();
117 * Fetch an action map to use. The map for a JEditorPane
176 || JEditorPane.W3C_LENGTH_UNITS.equals(name)
177 || JEditorPane.HONOR_DISPLAY_PROPERTIES.equals(name)
181 if ( JEditorPane.W3C_LENGTH_UNITS.equals(name)
182 || JEditorPane.HONOR_DISPLAY_PROPERTIES.equals(name) ) {
187 getClientProperty(JEditorPane
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXArrayDataViewer.java33 import javax.swing.JEditorPane;
61 JEditorPane arrayEditor = new JEditorPane();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthEditorPaneUI.java37 * {@link javax.swing.JEditorPane}.
69 c.getClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES);
71 c.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, localTrue);
90 c.getClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES);
92 c.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES,
/openjdk7/jdk/test/javax/swing/JEditorPane/
H A Dbug4714674.java3 @summary Tests that JEditorPane opens HTTP connection asynchronously
31 JEditorPane pane = new JEditorPane();
/openjdk7/jdk/test/javax/swing/text/StyledEditorKit/4506788/
H A Dbug4506788.java41 private JEditorPane jep;
74 throw new RuntimeException("Could not get JEditorPane location on screen");
110 jep = new JEditorPane();
/openjdk7/jdk/test/javax/swing/text/html/HTMLEditorKit/5043626/
H A Dbug5043626.java102 JEditorPane editorPane = new JEditorPane();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java99 * hyperlink events if the <code>JEditorPane</code> is <em>not editable</em>
100 * (<code>JEditorPane.setEditable(false);</code> has been called).
112 &nbsp; JEditorPane pane = (JEditorPane) e.getSource();
139 * passed to an user agent (<code>JEditorPane</code>) it is converted to
143 * with <code>JEditorPane</code>.
192 public class JEditorPane extends JTextComponent { class in inherits:JTextComponent
195 * Creates a new <code>JEditorPane</code>.
198 public JEditorPane() { method in class:JEditorPane
204 if (focusCycleRoot != JEditorPane
262 public JEditorPane(URL initialPage) throws IOException { method in class:JEditorPane
275 public JEditorPane(String url) throws IOException { method in class:JEditorPane
290 public JEditorPane(String type, String text) { method in class:JEditorPane
[all...]

Completed in 323 milliseconds

12