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 41 public class DnDResolver 42 extends AbstractPropertyResolver 43 { 44 45 51 57 63 66 protected String getPropertyType() { 67 return ExplorerConstants.DND_PROPERTY; 68 } 69 70 76 79 public Description resolve(String propertyType, Entry currentEntry, Entry parentEntry) { 80 return getDescription(currentEntry); 81 } 82 83 86 public Description resolve(String propertyType, Entry currentEntry) { 87 return resolve(propertyType, currentEntry, null); 88 } 89 90 } 91 92 | Popular Tags |