Here you can find the source of getXmlSchemaNamespace(Class> clazz)
Parameter | Description |
---|---|
clazz | the clazz |
public static String getXmlSchemaNamespace(Class<?> clazz)
//package com.java2s; /* // w ww .ja v a2s . c o m * Motu, a high efficient, robust and Standard compliant Web Server for Geographic * Data Dissemination. * * http://cls-motu.sourceforge.net/ * * (C) Copyright 2009-2010, by CLS (Collecte Localisation Satellites) - * http://www.cls.fr - and Contributors * * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software Foundation, * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ import java.lang.reflect.AnnotatedElement; import javax.xml.bind.annotation.XmlSchema; public class Main { /** * Gets the xml schema namespace. * * @param clazz the clazz * * @return the xml schema namespace */ public static String getXmlSchemaNamespace(Class<?> clazz) { AnnotatedElement pack = clazz.getPackage(); if (pack == null) { return ""; } XmlSchema schema = pack.getAnnotation(XmlSchema.class); String namespace = null; if (schema != null) { namespace = schema.namespace(); } else { namespace = ""; } return namespace; } }