/src/tripod/ui/kinome/KinomeRendererFactory.java

https://bitbucket.org/caodac/kinome-viewer · Java · 29 lines · 4 code · 1 blank · 24 comment · 0 complexity · 0c8c514d271bde11e09ccc4004e046a6 MD5 · raw file

  1. /*
  2. PUBLIC DOMAIN NOTICE
  3. NIH Chemical Genomics Center
  4. National Center for Advancing Translational Sciences
  5. This software/database is a "United States Government Work" under the
  6. terms of the United States Copyright Act. It was written as part of
  7. the author's official duties as United States Government employee and
  8. thus cannot be copyrighted. This software/database is freely
  9. available to the public for use. The NIH Chemical Genomics Center
  10. (NCGC) and the U.S. Government have not placed any restriction on its
  11. use or reproduction.
  12. Although all reasonable efforts have been taken to ensure the accuracy
  13. and reliability of the software and data, the NCGC and the U.S.
  14. Government do not and cannot warrant the performance or results that
  15. may be obtained by using this software or data. The NCGC and the U.S.
  16. Government disclaim all warranties, express or implied, including
  17. warranties of performance, merchantability or fitness for any
  18. particular purpose.
  19. Please cite the authors in any work or product based on this material.
  20. */
  21. package tripod.ui.kinome;
  22. public interface KinomeRendererFactory {
  23. KinomeItemRenderer getRenderer (String kinase, Number value);
  24. }