in clearcase-common/src/jetbrains/buildServer/vcs/clearcase/CCSnapshotView.java [108:123]
public String getStream() throws CCException {
if (isUcm() && myStream == null) {
try {
final StreamParser stream = CTool.lsStream(getTag());
if (stream == null) {
throw new CCException(String.format("Could not find stream for \"%s\"", getTag()));
}
myStream = String.format("%s@%s%s", stream.getName(), File.separator, stream.getProjectSelector());
} catch (InterruptedException e) {
throw new CCException(e);
} catch (IOException e) {
throw new CCException(e);
}
}
return myStream;
}