javax.swing.plaf.basic
static class: BasicHTML.BasicHTMLViewFactory [javadoc |
source]
java.lang.Object
javax.swing.text.html.HTMLEditorKit$HTMLFactory
javax.swing.plaf.basic.BasicHTML$BasicHTMLViewFactory
All Implemented Interfaces:
ViewFactory
BasicHTMLViewFactory extends HTMLFactory to force images to be loaded
synchronously.
| Method from javax.swing.plaf.basic.BasicHTML$BasicHTMLViewFactory Summary: |
|---|
|
create |
| Methods from javax.swing.text.html.HTMLEditorKit$HTMLFactory: |
|---|
|
create |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.swing.plaf.basic.BasicHTML$BasicHTMLViewFactory Detail: |
public View create(Element elem) {
View view = super.create(elem);
if (view instanceof ImageView) {
((ImageView)view).setLoadsSynchronously(true);
}
return view;
}
|