com.sun.xml.bind.v2.model.util.ArrayInfoUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
package com.sun.xml.bind.v2.model.util;
import javax.xml.namespace.QName;
import com.sun.xml.bind.v2.TODO;
import com.sun.xml.bind.v2.WellKnownNamespace;
/**
* Util class for ArrayInfo
*
* @author Iaroslav Savytskyi
*/
public class ArrayInfoUtil {
private ArrayInfoUtil() {}
/**
* Computes the type name of the array from that of the item type.
*/
public static QName calcArrayTypeName(QName n) {
String uri;
if(n.getNamespaceURI().equals(WellKnownNamespace.XML_SCHEMA)) {
TODO.checkSpec("this URI");
uri = "http://jaxb.dev.java.net/array";
} else
uri = n.getNamespaceURI();
return new QName(uri,n.getLocalPart()+"Array");
}
}