Package org.jaudiotagger.tag.datatype

Examples of org.jaudiotagger.tag.datatype.Lyrics3Line.writeString()


        Lyrics3Line line;
        String str = "";

        for (Object line1 : lines) {
            line = (Lyrics3Line) line1;
            str += (line.writeString() + Lyrics3v2Fields.CRLF);
        }

        return str;

        //return str.substring(0,str.length()-2); // cut off the last CRLF pair
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.