Package evolaris.framework.smsservices.business

Examples of evolaris.framework.smsservices.business.SortLabelStack


   * @param isFragment  true => this list is a fragment
   * @param expandFragments  expand embedded fragment command entries?
   * @return list including error messages and branch descriptions
   */
  protected List<DisplayableInteractionContent> buildInteractionList(HttpServletRequest req, Group  group, SortedSet<CommandEntry> sortedCommandEntries,boolean isFragment, boolean expandFragments) {
    return subInteractionList(req, group,sortedCommandEntries,isFragment, expandFragments, false, false, null,0,new SortLabelStack());
  }
View Full Code Here


        }
        SortedSet<CommandEntry> sortedFragmentCommandEntries = CommandEntryManager.sortedCommandEntries(fragment.getCommandEntries());
        String addedOperationPrefix = fragmentCommandEntry.getOperationPrefix();
        String combinedOperationPrefix = operationPrefix == null ? addedOperationPrefix : (operationPrefix + (addedOperationPrefix == null ? "" : addedOperationPrefix));
        nestedInteractionList = subInteractionList(req, group, sortedFragmentCommandEntries,isFragment, expandFragments, withinLoop, contactAvailable, combinedOperationPrefix,
            indentation, new SortLabelStack(sortLabelStack,sortLabel));
        if (nestedInteractionList == null){
          if (!interaction.isError()){
            interaction.setError(true);
            interaction.setErrorDescription(ResourceBundle.getBundle("SmsServices", locale).getString("TooManyNestingLevels"));
          }
View Full Code Here

TOP

Related Classes of evolaris.framework.smsservices.business.SortLabelStack

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.