1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: Atom representation.
6 // Authors: Egon Willighagen
7 // Version: $Revision: 1799 $
8 // $Date: 2006-11-11 18:11:39 +0100 (Sat, 11 Nov 2006) $
11 // Copyright (c) Egon Willighagen
13 // This program is free software; you can redistribute it and/or modify
14 // it under the terms of the GNU General Public License as published by
15 // the Free Software Foundation version 2 of the License.
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 ///////////////////////////////////////////////////////////////////////////////
23 package net.sf.jabref.export.layout.format;
25 import net.sf.jabref.export.layout.LayoutFormatter;
28 * Remove brackets formatter.
31 * @version $Revision: 1799 $
33 public class ToLowerCase implements LayoutFormatter {
35 public String format(String fieldText) {
36 return fieldText.toLowerCase();