Package XMLTags

Examples of XMLTags.WritterTag


    }
   
    public static void main(String args[]) throws BadSpecsException, MissingTitleTagException, IOException{
        List<ABCSongTagSimple> meta = new ArrayList<ABCSongTagSimple>();
        meta.add(new TitleTag("Smells Like Teen Spirit"));
        meta.add(new WritterTag("Nirvana"));
        SongXMLHolder xml = new SongXMLHolder("c:\\sample.txt", meta);
        xml.printXML("c:\\output.txt");
    }
View Full Code Here

TOP

Related Classes of XMLTags.WritterTag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.