Package net.sf.jabref.export.layout.format

Source Code of net.sf.jabref.export.layout.format.AuthorLF_FF

package net.sf.jabref.export.layout.format;

import net.sf.jabref.export.layout.LayoutFormatter;
import net.sf.jabref.AuthorList;

/**
*
*/
public class AuthorLF_FF implements LayoutFormatter {

    public String format(String fieldText) {
        AuthorList al = AuthorList.getAuthorList(fieldText);

        return al.getAuthorsLastFirstFirstLastAnds(false);
    }
}
TOP

Related Classes of net.sf.jabref.export.layout.format.AuthorLF_FF

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.