(int index)
| 101 | |
| 102 | |
| 103 | public String[] getActName(int index) { |
| 104 | String[] names = new String[2]; |
| 105 | if (isGeneral(index)) { |
| 106 | names[0] = (String)actKey.elementAt(index); |
| 107 | } else { |
| 108 | names[0] = (String)actKey.elementAt(getGeneralFor(index)); |
| 109 | names[1] = (String)actKey.elementAt(index); |
| 110 | } |
| 111 | return names; |
| 112 | } |
| 113 | public int getCount() { |
| 114 | return actKey.size(); |
| 115 | } |
no test coverage detected