コード例 #1
0
ファイル: SQLSession.java プロジェクト: JulianMoyano/nuxeo
 protected Document checkIn(Node node, String label, String checkinComment) {
   Node versionNode = session.checkIn(node, label, checkinComment);
   return versionNode == null ? null : newDocument(versionNode);
 }