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