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

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

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

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

/**
*
*/
public class AuthorLF_FFAbbr implements LayoutFormatter {

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

        return al.getAuthorsLastFirstFirstLastAnds(true);
    }
}
TOP

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

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.