NIHVIVO-3087 Add parens to method display name in dump of argumentless method

This commit is contained in:
ryounes 2011-08-05 14:35:50 +00:00
parent 74c0edabda
commit 4229e04a02
4 changed files with 43 additions and 38 deletions

View file

@ -4,12 +4,12 @@ package freemarker.ext.beans;
import java.lang.reflect.Member;
/**
* Class to extract information about the wrapper used to wrap an object in
* the template model.
* Class to expose protected information about template models and their data
* and wrappers to dump methods. Used as workaround to some problems and gaps
* in the Freemarker template model API.
*/
public class WrapperExtractor {
public class WrapperUtils {
public static BeansWrapper getWrapper(BeanModel model) {
return model.wrapper;