1 4 package com.tc.config.schema.dynamic; 5 6 import org.apache.xmlbeans.XmlObject; 7 8 import com.tc.config.schema.context.ConfigContext; 9 10 14 public abstract class ObjectArrayXPathBasedConfigItem extends XPathBasedConfigItem implements ObjectArrayConfigItem { 15 16 public ObjectArrayXPathBasedConfigItem(ConfigContext context, String xpath) { 17 super(context, xpath); 18 } 19 20 public ObjectArrayXPathBasedConfigItem(ConfigContext context, String xpath, Object defaultValue) { 21 super(context, xpath, defaultValue); 22 } 23 24 public Object [] getObjects() { 25 return (Object []) getObject(); 26 } 27 28 } 29 | Popular Tags |