1 7 8 package org.jdesktop.jdnc.markup.attr; 9 10 import net.openmarkup.Realizable; 11 12 import org.w3c.dom.Element ; 13 14 import org.jdesktop.jdnc.markup.RealizationUtils; 15 16 20 public class BaseAttribute { 21 22 26 public static Object getReferencedObject(Realizable target, String attributeValue) { 27 return RealizationUtils.getReferencedObject(target, attributeValue); 28 } 29 30 public static Element getReferencedElement(Realizable target, 31 String attributeValue) { 32 return RealizationUtils.getReferencedElement(target, attributeValue); 33 } 34 35 } 36 | Popular Tags |