01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets;
06:
07: /**
08: * This class can be used dictate a policy that maps a browser profile
09: * to a look and feel.
10: * <p>
11: * This class can be set on the SwingletManager to dictate policy.
12: *
13: * @author Robin Sharp
14: */
15:
16: import com.javelin.swinglets.plaf.*;
17:
18: public interface BrowserLookAndFeel extends java.io.Serializable {
19: public SLookAndFeel getLookAndFeel(BrowserProfile browserProfile);
20: }
|