Uses of Class
org.sonar.duplications.block.Block

Packages that use Block
org.sonar.duplications.block   
org.sonar.duplications.detector.original   
org.sonar.duplications.detector.suffixtree   
org.sonar.duplications.index   
org.sonar.duplications.internal.pmd   
org.sonar.plugins.cpd.index   
 

Uses of Block in org.sonar.duplications.block
 

Methods in org.sonar.duplications.block that return Block
 Block Block.Builder.build()
           
 

Methods in org.sonar.duplications.block that return types with arguments of type Block
 List<Block> BlockChunker.chunk(String resourceId, List<Statement> statements)
           
 

Uses of Block in org.sonar.duplications.detector.original
 

Method parameters in org.sonar.duplications.detector.original with type arguments of type Block
static List<CloneGroup> OriginalCloneDetectionAlgorithm.detect(CloneIndex cloneIndex, Collection<Block> fileBlocks)
          Performs detection and returns list of clone groups between file (which represented as a collection of blocks) and index.
 

Uses of Block in org.sonar.duplications.detector.suffixtree
 

Methods in org.sonar.duplications.detector.suffixtree that return Block
 Block TextSet.getBlock(int index)
           
 

Method parameters in org.sonar.duplications.detector.suffixtree with type arguments of type Block
 void TextSet.Builder.add(List<Block> list)
           
static List<CloneGroup> SuffixTreeCloneDetectionAlgorithm.detect(CloneIndex cloneIndex, Collection<Block> fileBlocks)
           
 

Uses of Block in org.sonar.duplications.index
 

Methods in org.sonar.duplications.index that return types with arguments of type Block
 Collection<Block> PackedMemoryCloneIndex.getByResourceId(String resourceId)
          Performs search of blocks for specified resource.
 Collection<Block> MemoryCloneIndex.getByResourceId(String resourceId)
           
 Collection<Block> CloneIndex.getByResourceId(String resourceId)
          Performs search of blocks for specified resource.
 Collection<Block> PackedMemoryCloneIndex.getBySequenceHash(ByteArray sequenceHash)
          Performs search of blocks for specified hash value.
 Collection<Block> MemoryCloneIndex.getBySequenceHash(ByteArray sequenceHash)
           
 Collection<Block> CloneIndex.getBySequenceHash(ByteArray hash)
          Performs search of blocks for specified hash value.
 

Methods in org.sonar.duplications.index with parameters of type Block
 void PackedMemoryCloneIndex.insert(Block block)
          Adds specified block into index.
 void MemoryCloneIndex.insert(Block block)
           
 void CloneIndex.insert(Block block)
          Adds specified block into index.
 

Uses of Block in org.sonar.duplications.internal.pmd
 

Methods in org.sonar.duplications.internal.pmd that return types with arguments of type Block
 List<Block> TokenizerBridge.chunk(String resourceId, File file)
           
 List<Block> PmdBlockChunker.chunk(String resourceId, List<org.sonar.duplications.internal.pmd.TokensLine> fragments)
           
 

Uses of Block in org.sonar.plugins.cpd.index
 

Methods in org.sonar.plugins.cpd.index that return types with arguments of type Block
 Collection<Block> DbDuplicationsIndex.getByHash(ByteArray hash)
           
 Collection<Block> SonarDuplicationsIndex.getByResource(Resource resource, String resourceKey)
           
 Collection<Block> SonarDuplicationsIndex.getByResourceId(String resourceId)
           
 Collection<Block> SonarDuplicationsIndex.getBySequenceHash(ByteArray hash)
           
 

Methods in org.sonar.plugins.cpd.index with parameters of type Block
 void SonarDuplicationsIndex.insert(Block block)
           
 

Method parameters in org.sonar.plugins.cpd.index with type arguments of type Block
 void SonarDuplicationsIndex.insert(Resource resource, Collection<Block> blocks)
           
 void DbDuplicationsIndex.insert(Resource resource, Collection<Block> blocks)
           
 



Copyright © 2009-2012 SonarSource. All Rights Reserved.