Package org.springframework.core.style

Examples of org.springframework.core.style.ToStringCreator


    public boolean getRequired() {
      return required;
    }

    public String toString() {
      return new ToStringCreator(this).append("property", property).append("converter", converter)
          .append("required", required).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 false;
  }

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

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

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

  public Object destroy(RequestContext context) {
    return context.getFlowScope().remove(name);
  }

  public String toString() {
    return new ToStringCreator(this).append("name", name).append("valueFactory", valueFactory).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

  private FlowBuilder getFlowBuilder() {
    return assembler.getFlowBuilder();
  }

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

      }
      return false;
    }

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

    scope.remove(VIEW_SCOPE_ATTRIBUTE);
  }

  public String toString() {
    if (flow != null) {
      return new ToStringCreator(this).append("flow", getFlowId()).append("state", getStateId())
          .append("scope", scope).toString();
    } else {
      return "[Unhydrated session '" + flowId + "' in state '" + stateId + "']";
    }
  }
View Full Code Here

    nameExpression.setValue(context, value);
    return success();
  }

  public String toString() {
    return new ToStringCreator(this).append("name", nameExpression).append("value", valueExpression).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.