comparison paper/chapter2.tex @ 116:d45899154815 default tip

Fixed
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 06 Mar 2014 00:48:26 +0900
parents eac8620cf9cd
children
comparison
equal deleted inserted replaced
115:eac8620cf9cd 116:d45899154815
139 TreeOperationが1つのデータ編集の単位になるが, これはあくまで最小のデータ編集の単位である. 139 TreeOperationが1つのデータ編集の単位になるが, これはあくまで最小のデータ編集の単位である.
140 Jungle によるデータの編集はTreeOperationが複数集まった単位でcommitされていく. 140 Jungle によるデータの編集はTreeOperationが複数集まった単位でcommitされていく.
141 このTreeOperationの集まりをTreeOperationLogという. 141 このTreeOperationの集まりをTreeOperationLogという.
142 142
143 \subsection{TreeOperationLog} 143 \subsection{TreeOperationLog}
144  Jungle 内部ではTreeOperationは順次ログに積まれていき, 最終的に 144 Jungle 内部ではTreeOperationは順次ログに積まれていき, 最終的に
145 commitされることで編集が完了する. 145 commitされることで編集が完了する.
146 この時, ログに積まれた複数のTreeOperationはTreeOperationLogとして扱われる. 146 この時, ログに積まれた複数のTreeOperationはTreeOperationLogとして扱われる.
147 TreeOperationLogの仕様をソースコード\ref{src:treeoperationlog}に示す. 147 TreeOperationLogの仕様をソースコード\ref{src:treeoperationlog}に示す.
148 \begin{lstlisting}[frame=lrbt,label=src:treeoperationlog,caption=TreeOperationLogの仕様,numbers=left] 148 \begin{lstlisting}[frame=lrbt,label=src:treeoperationlog,caption=TreeOperationLogの仕様,numbers=left]
149 public interface TreeOperationLog extends Iterable<TreeOperation> 149 public interface TreeOperationLog extends Iterable<TreeOperation>