Package org.apache.xmlbeans.impl.config
Class BindingConfigImpl
- java.lang.Object
-
- org.apache.xmlbeans.BindingConfig
-
- org.apache.xmlbeans.impl.config.BindingConfigImpl
-
public class BindingConfigImpl extends BindingConfig
An implementation of BindingConfig
-
-
Field Summary
-
Fields inherited from class org.apache.xmlbeans.BindingConfig
QNAME_ACCESSOR_ATTRIBUTE, QNAME_ACCESSOR_ELEMENT, QNAME_DOCUMENT_TYPE, QNAME_TYPE
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static BindingConfigforConfigDocuments(ConfigDocument.Config[] configs, File[] javaFiles, File[] classpath)InterfaceExtension[]getInterfaceExtensions()InterfaceExtension[]getInterfaceExtensions(String fullJavaName)PrePostExtensiongetPrePostExtension(String fullJavaName)PrePostExtension[]getPrePostExtensions()StringlookupJavanameForQName(QName qname)Deprecated.replaced withlookupJavanameForQName(QName, int)StringlookupJavanameForQName(QName qname, int kind)StringlookupPackageForNamespace(String uri)StringlookupPrefixForNamespace(String uri)StringlookupSuffixForNamespace(String uri)UserTypelookupUserTypeForQName(QName qname)-
Methods inherited from class org.apache.xmlbeans.BindingConfig
getUserTypes
-
-
-
-
Method Detail
-
forConfigDocuments
public static BindingConfig forConfigDocuments(ConfigDocument.Config[] configs, File[] javaFiles, File[] classpath)
-
lookupPackageForNamespace
public String lookupPackageForNamespace(String uri)
- Overrides:
lookupPackageForNamespacein classBindingConfig- Parameters:
uri- the namespace uri- Returns:
- the package name for a namespace or null.
-
lookupPrefixForNamespace
public String lookupPrefixForNamespace(String uri)
- Overrides:
lookupPrefixForNamespacein classBindingConfig- Parameters:
uri- the namespace uri- Returns:
- the prefix applied to each java name for a namespace or null.
-
lookupSuffixForNamespace
public String lookupSuffixForNamespace(String uri)
- Overrides:
lookupSuffixForNamespacein classBindingConfig- Parameters:
uri- the namespace uri- Returns:
- Get the suffix applied to each java name for a namespace or null.
-
lookupJavanameForQName
public String lookupJavanameForQName(QName qname)
Deprecated.replaced withlookupJavanameForQName(QName, int)- Overrides:
lookupJavanameForQNamein classBindingConfig- Parameters:
qname- the qname of the java name- Returns:
- the java name for a QName or null.
-
lookupJavanameForQName
public String lookupJavanameForQName(QName qname, int kind)
- Overrides:
lookupJavanameForQNamein classBindingConfig- Parameters:
qname- the qname of the java namekind- the type of the qname, which one ofBindingConfig.QNAME_TYPE,BindingConfig.QNAME_DOCUMENT_TYPE,BindingConfig.QNAME_ACCESSOR_ELEMENT,BindingConfig.QNAME_ACCESSOR_ATTRIBUTE- Returns:
- Get the java name for a QName of a specific component kind, or null.
-
lookupUserTypeForQName
public UserType lookupUserTypeForQName(QName qname)
- Overrides:
lookupUserTypeForQNamein classBindingConfig- Parameters:
qname- the qname of the user type- Returns:
- a user defined Java type for a given QName.
-
getInterfaceExtensions
public InterfaceExtension[] getInterfaceExtensions()
- Overrides:
getInterfaceExtensionsin classBindingConfig- Returns:
- all configured InterfaceExtensions or an empty array.
-
getInterfaceExtensions
public InterfaceExtension[] getInterfaceExtensions(String fullJavaName)
- Overrides:
getInterfaceExtensionsin classBindingConfig- Parameters:
fullJavaName- the fully qualified java type name- Returns:
- all InterfaceExtensions defined for the fully qualified java type generated from schema compilation or an empty array.
-
getPrePostExtensions
public PrePostExtension[] getPrePostExtensions()
- Overrides:
getPrePostExtensionsin classBindingConfig- Returns:
- all configued PrePostExtensions or an empty array.
-
getPrePostExtension
public PrePostExtension getPrePostExtension(String fullJavaName)
- Overrides:
getPrePostExtensionin classBindingConfig- Parameters:
fullJavaName- the fully qualified java type name- Returns:
- the PrePostExtension defined for the fully qualified java type generated from schema compilation or null.
-
-