return (length != 0) ? new StringListImpl((String[]) values.clone(), length) : StringListImpl.EMPTY_LIST;
}
public LSInputList createLSInputList(LSInput[] values) {
int length = (values != null) ? values.length : 0;
return (length != 0) ? new LSInputListImpl((LSInput[]) values.clone(), length) : LSInputListImpl.EMPTY_LIST;
}