in clearcase-common/src/jetbrains/buildServer/vcs/clearcase/CCHistory.java [46:73]
public CCHistory(CCSnapshotView view, HistoryParser parser) {
myView = view;
if ("mkelem".equals(parser.operation)) {
myKind = Kind.ADDITION;
} else if ("checkin".equals(parser.operation)) {
myKind = Kind.MODIFICATION;
} else if ("rmname".equals(parser.operation)) {
myKind = Kind.DELETION;
} else if ("rmver".equals(parser.operation)) {
myKind = Kind.DROP_VERSION;
} else if ("rmelem".equals(parser.operation)) {
myKind = Kind.DROP_ELEMENT;
}
myDate = parser.date;
myFile = new File(parser.path);
myVersion = parser.version;
myComment = parser.comment;
}