Author: echatellier Date: 2012-02-22 10:57:21 +0100 (Wed, 22 Feb 2012) New Revision: 3337 Url: http://chorem.org/repositories/revision/lima/3337 Log: Fix style ... Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java =================================================================== --- trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java 2012-02-22 09:56:52 UTC (rev 3336) +++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java 2012-02-22 09:57:21 UTC (rev 3337) @@ -5,7 +5,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2008 - 2010 CodeLutin + * Copyright (C) 2008 - 2012 CodeLutin, Chatellier Eric * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as @@ -37,9 +37,9 @@ * * @author chatellier * @version $Revision$ - * <p/> - * Last update : $Date$ - * By : $Author$ + * <p/> + * Last update : $Date$ + * By : $Author$ */ @Remote public interface ImportService { @@ -54,7 +54,6 @@ String importAccountsChartFromEbp(String datas) throws LimaException; - /** * Import data as Sage Maestria export. * Modified: trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java 2012-02-22 09:56:52 UTC (rev 3336) +++ trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java 2012-02-22 09:57:21 UTC (rev 3337) @@ -5,7 +5,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2008 - 2010 CodeLutin + * Copyright (C) 2008 - 2012 CodeLutin, Chatellier Eric * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as @@ -27,14 +27,15 @@ public enum EncodingEnum { - UTF8("UTF-8", "UTF-8 Lima"), ISOLATIN1("ISO-8859-1", "ISO-Latin-1 Excel / Windows"), + UTF8("UTF-8", "UTF-8 Lima"), + ISOLATIN1("ISO-8859-1", "ISO-Latin-1 Excel / Windows"), MACROMAN("MacRoman", "MacRoman Excel / Mac"); - private final String encoding; + protected final String encoding; - private final String description; + protected final String description; - EncodingEnum(String encoding, String description) { + private EncodingEnum(String encoding, String description) { this.encoding = encoding; this.description = description; } @@ -68,5 +69,4 @@ } return value; } - }