Inheritance diagram for org::gel::mauve::color::NormalizedOffsetColorScheme:


Public Member Functions | |
| void | apply (BaseViewerModel model) |
| String | toString () |
Private Member Functions | |
| Vector | getMatchesByOffset (BaseViewerModel model) |
Private Attributes | |
| Vector | matchesByOffset |
| long | uniqueOffsetCount |
Static Private Attributes | |
| final Comparator | MATCH_OFFSET_COMPARATOR |
Uses a very simple linear mapping approach for now. It can be tricked up later.
Definition at line 16 of file NormalizedOffsetColorScheme.java.
|
|
Implements org::gel::mauve::ColorScheme. Definition at line 29 of file NormalizedOffsetColorScheme.java. References org::gel::mauve::Match::color, org::gel::mauve::BaseViewerModel::getMatchCount(), getMatchesByOffset(), matchesByOffset, and uniqueOffsetCount. |
|
|
Definition at line 58 of file NormalizedOffsetColorScheme.java. References MATCH_OFFSET_COMPARATOR, matchesByOffset, org::gel::mauve::BaseViewerModel::sortedMatches(), and uniqueOffsetCount. Referenced by apply(). |
|
|
Definition at line 79 of file NormalizedOffsetColorScheme.java. |
|
|
Initial value: new Comparator () { public int compare (Object o1, Object o2) { Match a = (Match) o1; Match b = (Match) o2; return (int) (a.offset () - b.offset ()); } } Definition at line 17 of file NormalizedOffsetColorScheme.java. Referenced by getMatchesByOffset(). |
|
|
Definition at line 25 of file NormalizedOffsetColorScheme.java. Referenced by apply(), and getMatchesByOffset(). |
|
|
Definition at line 27 of file NormalizedOffsetColorScheme.java. Referenced by apply(), and getMatchesByOffset(). |
1.3.6