Examples of WidgetUserAction


Examples of edu.neu.ccs.task.dialogue.WidgetUserAction

    return currentInputPrompt;
  }
 
  public Pair<String, Map<String, String>> getCurrentInputWidget() {
    if (currentInputWidget==null && currentTurn!=null && currentTurn.hasUserWidget()) {
      WidgetUserAction wua = currentTurn.getUserWidget();
      currentInputWidget = Pair.create(
          wua.getUrl(),
          wua.getParameters(getFocusTask()));
    }
    return currentInputWidget;
  }
View Full Code Here

Examples of edu.neu.ccs.task.dialogue.WidgetUserAction

        params.put(name, value);
      } else
        skipElement(er);
    }
   
    return new WidgetUserAction(url, slot, params);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.