01: package org.uispec4j.interception.ui;
02:
03: import org.uispec4j.interception.toolkit.Empty;
04:
05: import javax.swing.*;
06: import javax.swing.plaf.ComponentUI;
07: import javax.swing.plaf.basic.BasicTextPaneUI;
08: import java.awt.*;
09:
10: ///CLOVER:OFF
11:
12: public class UISpecTextPaneUI extends BasicTextPaneUI {
13: public static ComponentUI createUI(JComponent component) {
14: return new UISpecTextPaneUI();
15: }
16:
17: protected void paintSafely(Graphics g) {
18: }
19:
20: protected void paintBackground(Graphics g) {
21: }
22:
23: protected void maybeUpdateLayoutState() {
24: }
25:
26: public Dimension getPreferredSize(JComponent c) {
27: return Empty.NULL_DIMENSION;
28: }
29:
30: public Dimension getMaximumSize(JComponent c) {
31: return Empty.NULL_DIMENSION;
32: }
33:
34: public Dimension getMinimumSize(JComponent c) {
35: return Empty.NULL_DIMENSION;
36: }
37: }
|