Package org.springframework.core.style

Examples of org.springframework.core.style.ToStringCreator


    }
    return (TransitionableState) currentState;
  }

  public String toString() {
    return new ToStringCreator(this).append("id", id).append("states", states).append("startState", startState)
        .append("variables", variables).append("inputMapper", inputMapper).append("startActionList",
            startActionList).append("exceptionHandlerSet", exceptionHandlerSet).append(
            "globalTransitionSet", globalTransitionSet).append("endActionList", endActionList).append(
            "outputMapper", outputMapper).toString();
  }
View Full Code Here


    context.getFlashScope().put(View.RENDER_FRAGMENTS_ATTRIBUTE, fragments);
    return success();
  }

  public String toString() {
    return new ToStringCreator(this).append("fragments", fragmentExpressions).toString();
  }
View Full Code Here

      return resultEventFactory.createResultEvent(this, result, context);
    }
  }

  public String toString() {
    return new ToStringCreator(this).append("expression", expression).append("resultExposer",
        evaluationResultExposer).toString();
  }
View Full Code Here

  public boolean handleException(FlowExecutionException exception, RequestControlContext context) {
    return getExceptionHandlerSet().handleException(exception, context);
  }

  public String toString() {
    ToStringCreator creator = new ToStringCreator(this).append("id", getId()).append("flow", flow.getId()).append(
        "entryActionList", entryActionList).append("exceptionHandlerSet", exceptionHandlerSet);
    appendToString(creator);
    return creator.toString();
  }
View Full Code Here

      return conversionService.getConversionExecutor(value.getClass(), expectedResultType).execute(value);
    }
  }

  public String toString() {
    return new ToStringCreator(this).append("result", resultExpression).append("resultType", expectedResultType)
        .toString();
  }
View Full Code Here

      }
      return false;
    }

    public String toString() {
      return new ToStringCreator(this).append("flowIds", StylerUtils.style(flowIds)).toString();
    }
View Full Code Here

    eventAttributes.put(ACTION_RESULTS_ATTRIBUTE_NAME, actionResults);
    return new Event(this, eventId, eventAttributes);
  }

  public String toString() {
    return new ToStringCreator(this).append("actions", getActions()).append("stopOnError", isStopOnError())
        .toString();
  }
View Full Code Here

    }
    return false;
  }

  public String toString() {
    return new ToStringCreator(this).append("on", getMatchingCriteria()).append("to", getTargetStateResolver())
        .toString();
  }
View Full Code Here

      this.treeStructure = treeStructure;
      this.componentState = componentState;
    }

    public String toString() {
      return new ToStringCreator(this).append("viewId", viewId).toString();
    }
View Full Code Here

    }
    return resultEvent;
  }

  public String toString() {
    return new ToStringCreator(this).append("targetAction", getTargetAction())
        .append("attributes", getAttributes()).toString();
  }
View Full Code Here

TOP

Related Classes of org.springframework.core.style.ToStringCreator

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.