public class BasicHTML extends Object
Modifier and Type | Field | Description |
---|---|---|
static final String |
documentBaseKey |
Key stored as a client property to indicate the base that relative references are resolved against. |
static final String |
propertyKey |
Key to use for the html renderer when stored as a client property of a JComponent. |
Constructor | Description |
---|---|
BasicHTML() |
Constructs a BasicHTML . |
Modifier and Type | Method | Description |
---|---|---|
static View |
createHTMLView |
Create an html renderer for the given component and string of html. |
static int |
getHTMLBaseline |
Returns the baseline for the html renderer. |
static boolean |
isHTMLString |
Check the given string to see if it should trigger the html rendering logic in a non-text component that supports html rendering. |
static void |
updateRenderer |
Stash the HTML render for the given text into the client properties of the given JComponent. |
public static final String propertyKey
public static final String documentBaseKey
jComponent.putClientProperty(documentBaseKey, xxx.class.getResource("resources/"));
public BasicHTML()
BasicHTML
.public static View createHTMLView(JComponent c, String html)
c
- a componenthtml
- an HTML stringpublic static int getHTMLBaseline(View view, int w, int h)
view
- the View to get the baseline forw
- the width to get the baseline forh
- the height to get the baseline forIllegalArgumentException
- if width or height is < 0public static boolean isHTMLString(String s)
s
- a texttrue
if the given string should trigger the html rendering logic in a non-text componentpublic static void updateRenderer(JComponent c, String text)
This method is useful for ComponentUI implementations that are static (i.e. shared) and get their state entirely from the JComponent.
c
- a componenttext
- a text
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/plaf/basic/BasicHTML.html