blob: 754c77ab22c424783d1878bb1c85e00afc826764 [file] [log] [blame]
import java.util.List;
public class Wrapper {
private final List<String> value;
public Wrapper(@TA List<@TA String> value) {
this.value = value;
}
public @TA List<@TA String> getValue() {
return value;
}
}