return new ContextMenuItem[]{editItem};
}
private boolean canMove(SecurityComponent sc) {
try {
MoveAction ma = new MoveAction();
return sc.getPermission(ma);
} catch (InterruptedException ie) {
// shouldn't happen, since we check above
return true;
}