コード例 #1
0
ファイル: NodeTableTrans.java プロジェクト: epimorphics/jena
 /** Convert from a id in other to an external id */
 private NodeId mapFromJournal(NodeId id) {
   if (passthrough) throw new TDBTransactionException("Not in an active transaction");
   if (NodeId.isInline(id)) return id;
   return NodeId.create(id.getId() + allocOffset);
 }