public interface RepaintManagerProvider
RepaintManagerUtils
Modifier and Type | Method and Description |
---|---|
Class<? extends org.jdesktop.swingx.ForwardingRepaintManager> |
getForwardingRepaintManagerClass()
Get the class of a
RepaintManager that extends ForwardingRepaintManager . |
Class<? extends WrappedRepaintManager> |
getWrappedRepaintManagerClass()
Get the class of a
RepaintManager that extends WrappedRepaintManager . |
boolean |
isAdequate(Class<? extends RepaintManager> rpm)
Checks whether or not the argument class is a
RepaintManager class that will do the required job. |
Class<? extends org.jdesktop.swingx.ForwardingRepaintManager> getForwardingRepaintManagerClass()
RepaintManager
that extends ForwardingRepaintManager
.
Note: the class must provide for a public constructor that takes a delegate RepaintManager
as its only argument.
Class<? extends WrappedRepaintManager> getWrappedRepaintManagerClass()
RepaintManager
that extends WrappedRepaintManager
.
Note: the class must provide for a public constructor that takes a delegate RepaintManager
as its only argument.
boolean isAdequate(Class<? extends RepaintManager> rpm)
RepaintManager
class that will do the required job.rpm
- a RepaintManager
classtrue
if the argument class will do the required job, false
otherwise