|
From: <de...@us...> - 2003-11-25 10:43:13
|
Update of /cvsroot/fudaa/fudaa_devel/ebli/src/org/fudaa/ebli/ressource
In directory sc8-pr-cvs1:/tmp/cvs-serv1137/ressource
Modified Files:
EbliResource.java
Log Message:
reformat files
Index: EbliResource.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/ebli/src/org/fudaa/ebli/ressource/EbliResource.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** EbliResource.java 26 Sep 2003 11:14:37 -0000 1.4
--- EbliResource.java 25 Nov 2003 10:06:47 -0000 1.5
***************
*** 7,28 ****
* @mail de...@fu...
*/
-
package org.fudaa.ebli.ressource;
-
import com.memoire.bu.BuResource;
import com.memoire.fu.FuLib;
-
/**
* @version $Id$
* @author Axel von Arnim
*/
! public class EbliResource
! extends BuResource
! {
! public final static EbliResource EBLI=
! new EbliResource(BuResource.BU);
!
! public EbliResource(BuResource _parent) { setParent(_parent); }
!
public String getString(String _s, String _v0) {
String r= getString(_s);
--- 7,22 ----
* @mail de...@fu...
*/
package org.fudaa.ebli.ressource;
import com.memoire.bu.BuResource;
import com.memoire.fu.FuLib;
/**
* @version $Id$
* @author Axel von Arnim
*/
! public class EbliResource extends BuResource {
! public final static EbliResource EBLI= new EbliResource(BuResource.BU);
! public EbliResource(BuResource _parent) {
! setParent(_parent);
! }
public String getString(String _s, String _v0) {
String r= getString(_s);
***************
*** 31,35 ****
return FuLib.replace(r, "{0}", _v0);
}
-
public String getString(String _s, String _v0, String _v1) {
String r= getString(_s);
--- 25,28 ----
***************
*** 39,45 ****
r= FuLib.replace(r, "{1}", _v1);
return r;
-
}
-
/**
* A "shortcut" to get i18n String (FudaaResource.FUDAA.getString)
--- 32,36 ----
***************
*** 48,52 ****
return EBLI.getString(_s);
}
-
/**
* A "shortcut" to get i18n String (FudaaResource.FUDAA.getString)
--- 39,42 ----
***************
*** 55,59 ****
return EBLI.getString(_s, _v0);
}
-
/**
* A "shortcut" to get i18n String (FudaaResource.FUDAA.getString)
--- 45,48 ----
***************
*** 62,67 ****
return EBLI.getString(_s, _v0, _v1);
}
-
-
-
}
--- 51,53 ----
|