blob: d760a3750ba9d3b50c10e0342cb2232bf4761190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package org.uscxml;
public class StringVector {
public int size() {
// TODO Auto-generated method stub
return 0;
}
public String get(int i) {
// TODO Auto-generated method stub
return null;
}
}
|