Esempio n. 1
0
  public boolean canPaste(
      ListScreen source, Selection selection, CommandContext context, SelectionItem parentItem) {

    CopyAndPaste dao = getDao(context.getScreen());
    Object parent = getParent(parentItem, context);

    for (SelectionItem item : selection) {
      if (!dao.canPasteCopy(item.getObject(), parent)) {
        return false;
      }
    }
    return true;
  }
Esempio n. 2
0
 @Override
 public boolean isEnabled(CommandContext context, Selection selection) {
   if (selection.isEmpty()) {
     return false;
   }
   CopyAndPaste dao = getDao(context.getScreen());
   for (SelectionItem item : selection) {
     if (!dao.canCopy(item.getObject())) {
       return false;
     }
   }
   return true;
 }
Esempio n. 3
0
  public void paste(
      ListScreen source,
      Selection selection,
      CommandContext context,
      SelectionItem parentItem,
      NotificationResult notification) {

    CopyAndPaste dao = getDao(context.getScreen());
    Object parent = getParent(parentItem, context);

    for (SelectionItem item : selection) {
      dao.pasteCopy(item.getObject(), parent);
    }

    notification.setDefaultMessage("{0,choice,1#Item has|1<{0} items have} been copied.");
  }