1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package net.jot.doclet; import java.io.IOException; import java.io.Serializable; import java.util.Vector; import net.jot.exceptions.JOTException; /** * Dummy class to test javadoc tags on * * @deprecated because * @author Thibaut Colar * @param myParam * @see java.util.Vector * @see java.util.Hashtable * @serial 12345 * @since 1.4 * @version 2.6 * @author Bob Lee */ public class JOTDocletTestTags extends Thread implements JOTDocletTestInterface { /** * My stupid Test field. * @deprecated * @see java.util.BitSet * @see java.util.Calendar * @serial 123 * @serialField 45467 * @since 2.3 */ public static final int myField=2; public static final String myField3="PRICE_ATTRIBUTE"; /** ovveride*/ public static final int MAX_PRIORITY=99; public static final long myField4=35L; public static final Character myField5=new Character('a'); public static final JOTDocletTestTags myField6=new JOTDocletTestTags(); volatile String myField2; /** * Constructor that takes a string. * @deprecated * @exception NullPointerException all the time * @exception RuntimeException when it breaks * @throws NegativeArraySizeException sometimes * @throws IllegalArgumentException other times * @param param1 blah * @see java.util.Calendar * @see java.util.BitSet * @since 2.5 */ public JOTDocletTestTags(String param1) throws IOException { } public JOTDocletTestTags() { } /** * getStuff Method * @deprecated * @exception NullPointerException all the time * @exception RuntimeException when it breaks * @throws JOTException * @throws net.jot.exceptions.JOTTransactionCompletedException * @throws NegativeArraySizeException sometimes * @throws IllegalArgumentException other times * @param param1 blah * @see java.util.Calendar * @see java.util.BitSet * @see JOTDocletNavView * @since 2.5 * @return a result of some sort * @param arg1 a thing * @param arg2 a string reprseneting stuff * @serialData 12345 */ public String getStuff(int arg1, int arg2) throws JOTException { return null; } public void getThing() { } /** * Cool inner class * @author thibaut C. * @deprecated * @see java.util.BitSet * @see java.util.Calendar * @serial 123 * @serialField 45467 * @since 2.3 */ public class MyInnerClass { } /** * ovbveride/implement run method */ public void run() { //super.run(); } }