1. /*
  2. * @(#)SynthStyleFactory.java 1.6 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 java.awt.*;
  9. import java.util.*;
  10. import javax.swing.plaf.*;
  11. import javax.swing.*;
  12. /**
  13. * Factory used for obtaining styles.
  14. *
  15. * @version 1.6, 01/23/03
  16. * @author Scott Violet
  17. */
  18. class SynthStyleFactory {
  19. public SynthStyleFactory() {
  20. }
  21. /**
  22. * Returns the style for the specified Component.
  23. *
  24. * @param c Component asking for
  25. * @param id Region identifier
  26. * @param Style for region.
  27. */
  28. public SynthStyle getStyle(JComponent c, Region id) {
  29. return null;
  30. }
  31. }