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.BasicTextUI;
08: import java.awt.*;
09:
10: ///CLOVER:OFF
11:
12: public class UISpecTextUI extends BasicTextUI {
13: public static ComponentUI createUI(JComponent component) {
14: return new UISpecTextUI();
15: }
16:
17: public Dimension getPreferredSize(JComponent c) {
18: return Empty.NULL_DIMENSION;
19: }
20:
21: protected String getPropertyPrefix() {
22: return "";
23: }
24:
25: public Dimension getMaximumSize(JComponent c) {
26: return Empty.NULL_DIMENSION;
27: }
28:
29: public Dimension getMinimumSize(JComponent c) {
30: return Empty.NULL_DIMENSION;
31: }
32: }
|