请问,是不是java代码中有错误,就不能用javadoc?

解决方案 »

  1.   

    for (int i = 0; i < this.argumentNames.length; ++i) {
          if (i < argumentIndexOffset)
            break label135:      if (!(this.argumentNames[i].equals(this.returningName))) { if (this.argumentNames[i].equals(this.throwingName))
            {
              break label135:
            }
            pointcutParameterNames[index] = this.argumentNames[i];
            pointcutParameterTypes[index] = methodParameterTypes[i];
            label135: ++index;
          }
        }像springframework包中的一段,这行:break label135::结尾,eclipse报错,如果改成;
    label135也会报错.
    所以javadoc无法通过,那它是如何制作成class的?我是反编译过来的java文件