Gets this PC's choice on a Rule @param aKey @return true or false
(final String aKey)
| 837 | * @return true or false |
| 838 | **/ |
| 839 | public static boolean getRuleCheck(final String aKey) |
| 840 | { |
| 841 | if (ruleCheckMap.containsKey(aKey)) |
| 842 | { |
| 843 | final String aVal = ruleCheckMap.get(aKey); |
| 844 | return aVal.equals("Y"); |
| 845 | } |
| 846 | |
| 847 | return false; |
| 848 | } |
| 849 | |
| 850 | /** |
| 851 | * save the outputsheet location with the PC? |
no test coverage detected