제주도 차세대 세외수입 면허번호 연계 API 추가로 인한 수정
parent
d62c10df1b
commit
87afc84ae1
@ -0,0 +1,17 @@
|
||||
package cokr.xit.applib;
|
||||
|
||||
public class UnnamedItems {
|
||||
protected String[] items;
|
||||
|
||||
public void setItemLength(int n) {
|
||||
this.items = new String[n];
|
||||
}
|
||||
|
||||
public void set(int i, String str) {
|
||||
this.items[i-1] = str;
|
||||
}
|
||||
|
||||
public String[] get() {
|
||||
return this.items;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue