Lines Matching refs:selectedKeys
65 sel.selectedKeys();
75 sel.selectedKeys();
150 // 4778099: Selector.selectedKeys() should allow removal but not addition
153 testNoAddition(sel.selectedKeys());
156 int n = sel.selectedKeys().size();
157 sel.selectedKeys().remove(sk);
158 if (sel.selectedKeys().size() != n - 1)
164 sel.selectedKeys().retainAll(hs);
165 if (sel.selectedKeys().isEmpty())
167 sel.selectedKeys().removeAll(hs);
168 if (!sel.selectedKeys().isEmpty())
174 sel.selectedKeys().clear();
175 if (!sel.selectedKeys().isEmpty())