01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets.plaf;
06:
07: import java.awt.*;
08: import java.awt.event.*;
09:
10: import com.javelin.swinglets.*;
11:
12: /**
13: * SComboBoxUI is a SComboBoxUI user interface.
14: *
15: * @author Robin Sharp
16: */
17:
18: public interface SComboBoxUI extends SComponentUI {
19:
20: // EVENTS /////////////////////////////////////////////////////////////////////
21:
22: /**
23: * Adds the specified text event listener to recieve text events
24: * from this textcomponent.
25: */
26: public void addTextListener(TextListener listener);
27:
28: /**
29: * Removes the specified text event listener so that it no longer
30: * receives text events from this textcomponent.
31: */
32: public void removeTextListener(TextListener listener);
33:
34: }
|