Skip to content

Commit

Permalink
correct taglet name
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Apr 19, 2013
1 parent 676ef42 commit a8efbc7
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
Expand Up @@ -37,7 +37,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.AbstractHashGeneratorTest")
class AbstractHashGenerator {
Expand Down
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/hash/AtomHashGenerator.java
Expand Up @@ -31,7 +31,7 @@
*
* @author John May
* @cdk.module interfaces
* @git.hash
* @cdk.githash
*/
public interface AtomHashGenerator {

Expand Down
Expand Up @@ -68,7 +68,7 @@
* Diameter</a>
* @see <a href="http://onlinelibrary.wiley.com/doi/10.1002/jcc.540150802/abstract">Original
* Publication</a>
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.BasicAtomHashGeneratorTest")
public final class BasicAtomHashGenerator extends AbstractHashGenerator
Expand Down
Expand Up @@ -48,7 +48,7 @@
* @cdk.module hash
* @see AtomHashGenerator
* @see BasicAtomHashGenerator
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.BasicMoleculeHashGeneratorTest")
public class BasicMoleculeHashGenerator implements MoleculeHashGenerator {
Expand Down
Expand Up @@ -33,7 +33,7 @@
*
* @author John May
* @cdk.module interfaces
* @git.hash
* @cdk.githash
*/
public interface EnsembleHashGenerator {

Expand Down
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/hash/HashGeneratorMaker.java
Expand Up @@ -83,7 +83,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.HashGeneratorMakerTest")
public class HashGeneratorMaker {
Expand Down
Expand Up @@ -30,7 +30,7 @@
*
* @author John May
* @cdk.module interfaces
* @git.hash
* @cdk.githash
*/
public interface MoleculeHashGenerator {

Expand Down
Expand Up @@ -62,7 +62,7 @@
* @see org.openscience.cdk.hash.SeedGenerator
* @see <a href="http://onlinelibrary.wiley.com/doi/10.1002/jcc.540150802/abstract">Original
* Publication</a>
* @git.hash
* @cdk.githash
* @see HashGeneratorMaker
*/
@TestClass("org.openscience.cdk.hash.PerturbedAtomHashGeneratorTest")
Expand Down
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/hash/Pseudorandom.java
Expand Up @@ -29,7 +29,7 @@
*
* @author John May
* @cdk.module interfaces
* @git.hash
* @cdk.githash
*/
public interface Pseudorandom {

Expand Down
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/hash/SeedGenerator.java
Expand Up @@ -51,7 +51,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
* @see BasicAtomHashGenerator
* @see org.openscience.cdk.hash.seed.ConjugatedAtomEncoder
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/hash/Xorshift.java
Expand Up @@ -33,7 +33,7 @@
* @see <a href="http://en.wikipedia.org/wiki/Xorshift">Xorshift</a>
* @see <a href="http://www.javamex.com/tutorials/random_numbers/xorshift.shtml">Xorshift
* random number generators</a>
* @git.hash
* @cdk.githash
* @cdk.module hash
*/
@TestClass("org.openscience.cdk.hash.XorshiftTest")
Expand Down
Expand Up @@ -58,7 +58,7 @@
* @see org.openscience.cdk.hash.PerturbedAtomHashGenerator
* @see MinimumEquivalentCyclicSet
* @see MinimumEquivalentCyclicSetUnion
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.equivalent.AllEquivalentCyclicSetTest")
public final class AllEquivalentCyclicSet implements EquivalentSetFinder {
Expand Down
Expand Up @@ -39,7 +39,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
public interface EquivalentSetFinder {

Expand Down
Expand Up @@ -73,7 +73,7 @@
* @see MinimumEquivalentCyclicSetUnion
* @see AllEquivalentCyclicSet
* @see org.openscience.cdk.hash.HashGeneratorMaker
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.equivalent.MinimumEquivalentCyclicSetTest")
public final class MinimumEquivalentCyclicSet implements EquivalentSetFinder {
Expand Down
Expand Up @@ -78,7 +78,7 @@
* @see AllEquivalentCyclicSet
* @deprecated provided for to demonstrate a relatively robust but ultimately
* incomplete approach
* @git.hash
* @cdk.githash
*/
@Deprecated
@TestClass("org.openscience.cdk.hash.equivalent.MinimumEquivalentCyclicSetUnionTest")
Expand Down
2 changes: 1 addition & 1 deletion src/main/org/openscience/cdk/hash/seed/AtomEncoder.java
Expand Up @@ -34,7 +34,7 @@
* @author John May
* @cdk.module interfaces
* @see org.openscience.cdk.hash.AtomHashGenerator
* @git.hash
* @cdk.githash
*/
public interface AtomEncoder {

Expand Down
Expand Up @@ -44,7 +44,7 @@
* @see ConjugatedAtomEncoder
* @see <a href="http://www.bigprimes.net/archive/prime/">Prime numbers
* archive</a>
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.seed.BasicAtomEncoderTest")
public enum BasicAtomEncoder implements AtomEncoder {
Expand Down
Expand Up @@ -61,7 +61,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.seed.ConjugatedAtomEncoderTest")
public final class ConjugatedAtomEncoder implements AtomEncoder {
Expand Down
Expand Up @@ -63,7 +63,7 @@
* @author John May
* @cdk.module hash
* @see org.openscience.cdk.hash.HashGeneratorMaker
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.factory.GeometricDoubleBondEncoderFactoryTest")
public final class GeometricDoubleBondEncoderFactory
Expand Down
Expand Up @@ -56,7 +56,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.factory.GeometricTetrahedralEncoderFactoryTest")
public class GeometricTetrahedralEncoderFactory
Expand Down
Expand Up @@ -33,7 +33,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
public interface StereoEncoderFactory {

Expand Down
Expand Up @@ -33,7 +33,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.BasicPermutationParityTest")
public final class BasicPermutationParity implements PermutationParity {
Expand Down
Expand Up @@ -32,7 +32,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.parity.CombinedPermutationParityTest")
public final class CombinedPermutationParity implements PermutationParity {
Expand Down
Expand Up @@ -38,7 +38,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.parity.DoubleBond2DParityTest")
public final class DoubleBond2DParity implements GeometricParity {
Expand Down
Expand Up @@ -37,7 +37,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.parity.DoubleBond3DParityTest")
public final class DoubleBond3DParity implements GeometricParity {
Expand Down
Expand Up @@ -29,7 +29,7 @@
*
* @author John May
* @cdk.module hash
* @git.hash
* @cdk.githash
*/
public interface GeometricParity {

Expand Down
Expand Up @@ -31,7 +31,7 @@
* @cdk.module hash
* @see <a href="http://en.wikipedia.org/wiki/Parity_of_a_permutation">Parity of
* a Permutation, Wikipedia</a>
* @git.hash
* @cdk.githash
*/
public interface PermutationParity {

Expand Down
Expand Up @@ -43,7 +43,7 @@
* @cdk.module hash
* @see <a href="http://www.mdpi.org/molecules/papers/61100915/61100915.htm">Cieplak,
* T and Wisniewski, J.L. 2001</a>
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.parity.Tetrahedral2DParityTest")
public final class Tetrahedral2DParity implements GeometricParity {
Expand Down
Expand Up @@ -40,7 +40,7 @@
* @cdk.module hash
* @see <a href="http://www.mdpi.org/molecules/papers/61100915/61100915.htm">Cieplak,
* T and Wisniewski, J.L. 2001</a>
* @git.hash
* @cdk.githash
*/
@TestClass("org.openscience.cdk.hash.stereo.parity.Tetrahedral3DParityTest")
public final class Tetrahedral3DParity implements GeometricParity {
Expand Down

0 comments on commit a8efbc7

Please sign in to comment.