1. /*
  2. * @(#)SynthUI.java 1.8 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.java.swing.plaf.gtk;
  8. import javax.swing.*;
  9. /**
  10. * SynthUI is used to fetch the SynthContext for a particular Component.
  11. *
  12. * @version 1.8, 01/23/03
  13. * @author Scott Violet
  14. */
  15. interface SynthUI extends SynthConstants {
  16. /**
  17. * Returns the Context for the specified component.
  18. *
  19. * @param c Component requesting SynthContext.
  20. * @return SynthContext describing component.
  21. */
  22. public SynthContext getContext(JComponent c);
  23. }