Example usage for org.springframework.beans PropertyEditorRegistry toString

List of usage examples for org.springframework.beans PropertyEditorRegistry toString

Introduction

In this page you can find the example usage for org.springframework.beans PropertyEditorRegistry toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:no.abmu.questionnaire.webflow.MuseumStatisticFormAction.java

@Override
protected void registerPropertyEditors(RequestContext context, PropertyEditorRegistry registry) {
    logger.info("Executing custom registerPropertyEditors");
    logger.info("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
    logger.info("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
    logger.info("RequestContext=[" + context.toString() + "]");
    logger.info("PropertyEditorRegistry=[" + registry.toString() + "]");
    logger.info("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
    logger.info("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
    //        super.registerPropertyEditors(context, registry);
    MuseumStatisticPropertyEditorRegistrar registrar = new MuseumStatisticPropertyEditorRegistrar();
    registrar.setRequestContext(context);
    registrar.registerCustomEditors(registry);
    super.registerPropertyEditors(context, registry);

    logger.info("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
    logger.info("ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ");
}