Package edu.neu.ccs.task.dialogue

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


        params.put(name, value);
      } else
        skipElement(er);
    }
   
    return new WidgetUserAction(url, slot, params);
  }
View Full Code Here

TOP

Related Classes of edu.neu.ccs.task.dialogue.WidgetUserAction

Copyright © 2018 www.massapicom. 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.