public class RDF { 
    public static final String Property = Init.Property(); 
// public static final String Property = "Property"; 
    public static final String List = Init.List(); 

    public static class Init { 
        //this field breaks javadoc 
        //comment it and replace the Property field of the outer class 
        public static String Property() { return "Property"; } 

        //"List" and several other names used in the Apache Jena RDF and RDFS class are OK 
        public static String List() { return "List"; } 
    } 
} 
