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 InfoResolver extends AbstractPropertyResolver { 41 42 48 54 60 63 protected String getPropertyType() { 64 return ExplorerConstants.INFO_PROPERTY; 65 } 66 67 73 76 public Description resolve(String propertyType, Entry currentEntry, Entry parentEntry) { 77 return getDescription(currentEntry); 78 } 79 80 83 public Description resolve(String propertyType, Entry currentEntry) { 84 return resolve(propertyType, currentEntry, null); 85 } 86 87 } 88 89 90 | Popular Tags |