(Card c)
| 33 | private static final long serialVersionUID = -3624090829028979255L; |
| 34 | |
| 35 | public static CardView get(Card c) { |
| 36 | return c == null ? null : c.getView(); |
| 37 | } |
| 38 | public static CardStateView getState(Card c, CardStateName state) { |
| 39 | if (c == null) { return null; } |
| 40 | CardState s = c.getState(state); |
no test coverage detected