(int size, Object first, Object second, boolean bold)
| 40 | public boolean rShift = false; |
| 41 | |
| 42 | public MainBar(int size, Object first, Object second, boolean bold) { |
| 43 | this (size); |
| 44 | if (first!=null) setElementAt(first,0); |
| 45 | if (second!=null) setElementAt(second,1); |
| 46 | |
| 47 | font = FontCache.getFont(bold, FontCache.bar); |
| 48 | } |
| 49 | |
| 50 | public MainBar(Object obj) { |
| 51 | this(1, obj, null, false); |
nothing calls this directly
no test coverage detected