1 26 package org.objectweb.util.explorer.resolver.lib; 27 28 import org.objectweb.util.explorer.api.Entry; 29 import org.objectweb.util.explorer.core.common.api.Description; 30 import org.objectweb.util.explorer.core.common.api.ExplorerConstants; 31 32 40 public class WrapperResolver 41 extends AbstractPropertyResolver 42 { 43 44 50 56 62 65 protected String getPropertyType() { 66 return ExplorerConstants.WRAPPER_PROPERTY; 67 } 68 69 75 78 public Description resolve(String propertyType, Entry currentEntry, Entry parentEntry) { 79 return getDescription(currentEntry); 80 } 81 82 85 public Description resolve(String propertyType, Entry currentEntry) { 86 return resolve(propertyType, currentEntry, null); 87 } 88 89 } 90 | Popular Tags |