1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.nis.nmsclient.util.file;
public class Res extends java.util.ListResourceBundle {
static final Object[][] contents = new String[][]{
{ "r", "r" },
{ "bufbitlen_size_must_0", "bufbitlen size must >= 0" },
{ "rw", "rw" },
{ "BufferedRandomAccess", "BufferedRandomAccessFile Copy & Write File: " },
{ "FileSize_", " FileSize: " },
{ "_KB_", " (KB) " },
{ "Spend_", "Spend: " },
{ "_s_", "(s)" },
{ "DataBufferedios_Copy", "DataBufferedios Copy & Write File: " }};
public Object[][] getContents() {
return contents;
}
}
|