Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import javax.xml.bind.annotation.XmlSchema;

public class Main {
    private static String getNamespace(Class<?> aClass) {
        XmlSchema xmlSchema = aClass.getPackage().getAnnotation(XmlSchema.class);
        return xmlSchema.namespace();
    }
}