Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 255 → Rev 382

/DUBwise/trunk/j2me/src/DUBwiseHelper.java
19,6 → 19,17
{ return "" + digit/100 + "" + (digit/10)%10 + "" + (digit)%10; }
 
 
public final static String[] combine_str_arr(String[] arr1 , String[] arr2)
{
String[] res=new String[arr1.length+arr2.length];
for (int pos=0;pos<res.length;pos++)
if (pos<arr1.length)
res[pos]=arr1[pos];
else
res[pos]=arr2[pos-arr1.length];
return res;
}
 
public final static String pound_progress(int val,int max)
{
String res="" + (val+1) + "/" + max + " |";