Uses of Class
org.apache.wicket.util.diff.Chunk
-
Packages that use Chunk Package Description org.apache.wicket.util.diff Thediffpackage implements the differencing engine that JRCS uses. -
-
Uses of Chunk in org.apache.wicket.util.diff
Fields in org.apache.wicket.util.diff declared as Chunk Modifier and Type Field Description protected ChunkDelta. originalprotected ChunkDelta. revisedMethods in org.apache.wicket.util.diff that return Chunk Modifier and Type Method Description ChunkDelta. getOriginal()Accessor method to return the chunk representing the original sequence of itemsChunkDelta. getRevised()Accessor method to return the chunk representing the updated sequence of items.Methods in org.apache.wicket.util.diff with parameters of type Chunk Modifier and Type Method Description protected voidDelta. init(Chunk orig, Chunk rev)Initializes the delta with the given chunks from the original and revised texts.static DeltaDelta. newDelta(Chunk orig, Chunk rev)Returns a Delta that corresponds to the given chunks in the original and revised text respectively.Constructors in org.apache.wicket.util.diff with parameters of type Chunk Constructor Description AddDelta(int origpos, Chunk rev)Construct.ChangeDelta(Chunk orig, Chunk rev)Construct.DeleteDelta(Chunk orig)Construct.Delta(Chunk orig, Chunk rev)Creates a delta object with the given chunks from the original and revised texts.
-