1 7 8 package com.sun.javadoc; 9 10 33 public abstract class Doclet { 34 35 41 public static boolean start(RootDoc root) { 42 return true; 43 } 44 45 58 public static int optionLength(String option) { 59 return 0; } 61 62 75 public static boolean validOptions(String options[][], 76 DocErrorReporter reporter) { 77 return true; } 79 80 90 public static LanguageVersion languageVersion() { 91 return LanguageVersion.JAVA_1_1; 92 } 93 } 94 95 | Popular Tags |