blob: 6ef6d39e9ad9540a728d9921ccc2c1a52aa1d7ab [file] [log] [blame]
package org.apache.xmlbeans.impl.config;
import javax.xml.namespace.QName;
import org.apache.xmlbeans.UserType;
import org.apache.xmlbeans.impl.jam.JamClassLoader;
import org.apache.xmlbeans.impl.xb.xmlconfig.Usertypeconfig;
public class UserTypeImpl implements UserType
{
private QName _name;
private String _javaName;
private String _staticHandler;
static UserTypeImpl newInstance(JamClassLoader loader, Usertypeconfig cfgXO)
{
UserTypeImpl result = new UserTypeImpl();
result._name = cfgXO.getName();
result._javaName = cfgXO.getJavaname();
result._staticHandler = cfgXO.getStaticHandler();
// We don't validate here because we're just using reflection in
// the implementation. However, in the future we might want to add
// the option of directly using the static handler in generated code
return result;
}
public String getJavaName()
{
return _javaName;
}
public QName getName()
{
return _name;
}
public String getStaticHandler()
{
return _staticHandler;
}
}