Lines Matching refs:CompilerOptions

24 import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
944 if (CompilerOptions.DISABLED.equals(this.reportInvalidJavadocTagsDeprecatedRef)) { in errorsForInvalidTagsClassOrField()
947 if (add && CompilerOptions.DISABLED.equals(this.reportInvalidJavadocTagsNotVisibleRef)) { in errorsForInvalidTagsClassOrField()
991 if (CompilerOptions.DISABLED.equals(this.reportInvalidJavadocTagsDeprecatedRef)) { in errorsForInvalidTagsMethodOrConstructor()
994 if (add && CompilerOptions.DISABLED.equals(this.reportInvalidJavadocTagsNotVisibleRef)) { in errorsForInvalidTagsMethodOrConstructor()
1203 if (CompilerOptions.ENABLED.equals(this.reportMissingJavadocTagsOverriding)) { in resultForMissingTags()
1339 if (CompilerOptions.ENABLED.equals(this.reportMissingJavadocCommentsOverriding)) { in resultForMissingComments()
1387 options.put(CompilerOptions.OPTION_DocCommentSupport, this.docCommentSupport); in getCompilerOptions()
1389 options.put(CompilerOptions.OPTION_ReportInvalidJavadoc, this.reportInvalidJavadoc); in getCompilerOptions()
1391 …options.put(CompilerOptions.OPTION_ReportInvalidJavadocTagsVisibility, this.reportInvalidJavadocTa… in getCompilerOptions()
1393 options.put(CompilerOptions.OPTION_ReportInvalidJavadocTags, this.reportInvalidJavadocTags); in getCompilerOptions()
1395 …options.put(CompilerOptions.OPTION_ReportInvalidJavadocTagsDeprecatedRef, this.reportInvalidJavado… in getCompilerOptions()
1397 …options.put(CompilerOptions.OPTION_ReportInvalidJavadocTagsNotVisibleRef, this.reportInvalidJavado… in getCompilerOptions()
1399 options.put(CompilerOptions.OPTION_ReportMissingJavadocTags, this.reportMissingJavadocTags); in getCompilerOptions()
1401 …options.put(CompilerOptions.OPTION_ReportMissingJavadocTagsVisibility, this.reportMissingJavadocTa… in getCompilerOptions()
1403 …options.put(CompilerOptions.OPTION_ReportMissingJavadocTagsOverriding, this.reportMissingJavadocTa… in getCompilerOptions()
1405 …options.put(CompilerOptions.OPTION_ReportMissingJavadocComments, this.reportMissingJavadocComments… in getCompilerOptions()
1407 …options.put(CompilerOptions.OPTION_ReportMissingJavadocCommentsVisibility, this.reportMissingJavad… in getCompilerOptions()
1409 …options.put(CompilerOptions.OPTION_ReportMissingJavadocCommentsOverriding, this.reportMissingJavad… in getCompilerOptions()
1412 options.put(CompilerOptions.OPTION_ReportFieldHiding, CompilerOptions.IGNORE); in getCompilerOptions()
1413 options.put(CompilerOptions.OPTION_ReportSyntheticAccessEmulation, CompilerOptions.IGNORE); in getCompilerOptions()
1414 options.put(CompilerOptions.OPTION_ReportUnusedLocal, CompilerOptions.IGNORE); in getCompilerOptions()
1415 options.put(CompilerOptions.OPTION_ReportUnusedPrivateMember, CompilerOptions.IGNORE); in getCompilerOptions()
1441 this.docCommentSupport = CompilerOptions.DISABLED; in testInvalidTagsClassNoSupport()
1445 this.docCommentSupport = CompilerOptions.DISABLED; in testInvalidTagsFieldNoSupport()
1449 this.docCommentSupport = CompilerOptions.DISABLED; in testInvalidTagsMethodNoSupport()
1453 this.docCommentSupport = CompilerOptions.DISABLED; in testInvalidTagsConstructorNoSupport()
1476 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsClassErrorNotags()
1477 this.reportInvalidJavadocTags = CompilerOptions.DISABLED; in testInvalidTagsClassErrorNotags()
1481 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsFieldErrorNotags()
1482 this.reportInvalidJavadocTags = CompilerOptions.DISABLED; in testInvalidTagsFieldErrorNotags()
1486 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsMethodErrorNotags()
1487 this.reportInvalidJavadocTags = CompilerOptions.DISABLED; in testInvalidTagsMethodErrorNotags()
1491 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsConstructorErrorNotags()
1492 this.reportInvalidJavadocTags = CompilerOptions.DISABLED; in testInvalidTagsConstructorErrorNotags()
1498 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsClassErrorTagsPublic()
1499 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsClassErrorTagsPublic()
1500 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsClassErrorTagsPublic()
1505 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsFieldErrorTagsPublic()
1506 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsFieldErrorTagsPublic()
1507 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsFieldErrorTagsPublic()
1512 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsMethodErrorTagsPublic()
1513 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsMethodErrorTagsPublic()
1514 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsMethodErrorTagsPublic()
1519 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsConstructorErrorTagsPublic()
1520 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsConstructorErrorTagsPublic()
1521 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsConstructorErrorTagsPublic()
1528 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsClassErrorTagsProtected()
1529 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsClassErrorTagsProtected()
1530 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsClassErrorTagsProtected()
1535 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsFieldErrorTagsProtected()
1536 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsFieldErrorTagsProtected()
1537 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsFieldErrorTagsProtected()
1542 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsMethodErrorTagsProtected()
1543 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsMethodErrorTagsProtected()
1544 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsMethodErrorTagsProtected()
1549 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsConstructorErrorTagsProtected()
1550 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsConstructorErrorTagsProtected()
1551 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsConstructorErrorTagsProtected()
1558 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsClassErrorTagsPackage()
1559 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsClassErrorTagsPackage()
1560 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsClassErrorTagsPackage()
1565 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsFieldErrorTagsPackage()
1566 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsFieldErrorTagsPackage()
1567 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsFieldErrorTagsPackage()
1572 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsMethodErrorTagsPackage()
1573 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsMethodErrorTagsPackage()
1574 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsMethodErrorTagsPackage()
1579 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsConstructorErrorTagsPackage()
1580 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsConstructorErrorTagsPackage()
1581 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsConstructorErrorTagsPackage()
1588 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsClassErrorTagsPrivate()
1592 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsFieldErrorTagsPrivate()
1596 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsMethodErrorTagsPrivate()
1600 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsConstructorErrorTagsPrivate()
1606 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefClassErrorTagsPublic()
1607 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefClassErrorTagsPublic()
1608 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefClassErrorTagsPublic()
1609 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedRefClassErrorTagsPublic()
1614 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefFieldErrorTagsPublic()
1615 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsPublic()
1616 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsPublic()
1617 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedRefFieldErrorTagsPublic()
1622 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefMethodErrorTagsPublic()
1623 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsPublic()
1624 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsPublic()
1625 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedRefMethodErrorTagsPublic()
1630 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefConstructorErrorTagsPublic()
1631 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsPublic()
1632 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsPublic()
1633 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedRefConstructorErrorTagsPublic()
1640 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefClassErrorTagsProtected()
1641 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefClassErrorTagsProtected()
1642 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefClassErrorTagsProtected()
1643 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedRefClassErrorTagsProtected()
1648 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefFieldErrorTagsProtected()
1649 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsProtected()
1650 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsProtected()
1651 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedRefFieldErrorTagsProtected()
1656 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefMethodErrorTagsProtected()
1657 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsProtected()
1658 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsProtected()
1659 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedRefMethodErrorTagsProtected()
1664 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefConstructorErrorTagsProtected()
1665 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsProtected()
1666 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsProtected()
1667 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedRefConstructorErrorTagsProtected()
1674 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefClassErrorTagsPackage()
1675 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefClassErrorTagsPackage()
1676 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefClassErrorTagsPackage()
1677 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedRefClassErrorTagsPackage()
1682 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefFieldErrorTagsPackage()
1683 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsPackage()
1684 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsPackage()
1685 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedRefFieldErrorTagsPackage()
1690 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefMethodErrorTagsPackage()
1691 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsPackage()
1692 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsPackage()
1693 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedRefMethodErrorTagsPackage()
1698 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefConstructorErrorTagsPackage()
1699 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsPackage()
1700 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsPackage()
1701 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedRefConstructorErrorTagsPackage()
1708 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefClassErrorTagsPrivate()
1709 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefClassErrorTagsPrivate()
1714 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefFieldErrorTagsPrivate()
1715 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefFieldErrorTagsPrivate()
1720 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefMethodErrorTagsPrivate()
1721 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefMethodErrorTagsPrivate()
1726 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedRefConstructorErrorTagsPrivate()
1727 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedRefConstructorErrorTagsPrivate()
1734 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefClassErrorTagsPublic()
1735 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefClassErrorTagsPublic()
1736 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefClassErrorTagsPublic()
1737 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsNotVisibleRefClassErrorTagsPublic()
1742 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefFieldErrorTagsPublic()
1743 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsPublic()
1744 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsPublic()
1745 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsNotVisibleRefFieldErrorTagsPublic()
1750 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefMethodErrorTagsPublic()
1751 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsPublic()
1752 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsPublic()
1753 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsNotVisibleRefMethodErrorTagsPublic()
1758 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefConstructorErrorTagsPublic()
1759 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsPublic()
1760 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsPublic()
1761 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsNotVisibleRefConstructorErrorTagsPublic()
1768 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefClassErrorTagsProtected()
1769 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefClassErrorTagsProtected()
1770 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefClassErrorTagsProtected()
1771 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsNotVisibleRefClassErrorTagsProtected()
1776 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefFieldErrorTagsProtected()
1777 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsProtected()
1778 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsProtected()
1779 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsNotVisibleRefFieldErrorTagsProtected()
1784 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefMethodErrorTagsProtected()
1785 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsProtected()
1786 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsProtected()
1787 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsNotVisibleRefMethodErrorTagsProtected()
1792 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefConstructorErrorTagsProtected()
1793 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsProtected()
1794 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsProtected()
1795 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsNotVisibleRefConstructorErrorTagsProtected()
1802 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefClassErrorTagsPackage()
1803 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefClassErrorTagsPackage()
1804 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefClassErrorTagsPackage()
1805 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsNotVisibleRefClassErrorTagsPackage()
1810 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefFieldErrorTagsPackage()
1811 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsPackage()
1812 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsPackage()
1813 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsNotVisibleRefFieldErrorTagsPackage()
1818 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefMethodErrorTagsPackage()
1819 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsPackage()
1820 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsPackage()
1821 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsNotVisibleRefMethodErrorTagsPackage()
1826 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefConstructorErrorTagsPackage()
1827 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsPackage()
1828 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsPackage()
1829 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsNotVisibleRefConstructorErrorTagsPackage()
1836 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefClassErrorTagsPrivate()
1837 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefClassErrorTagsPrivate()
1842 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefFieldErrorTagsPrivate()
1843 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefFieldErrorTagsPrivate()
1848 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefMethodErrorTagsPrivate()
1849 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefMethodErrorTagsPrivate()
1854 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsNotVisibleRefConstructorErrorTagsPrivate()
1855 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsNotVisibleRefConstructorErrorTagsPrivate()
1862 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPublic()
1863 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPublic()
1864 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPublic()
1865 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPublic()
1866 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPublic()
1871 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPublic()
1872 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPublic()
1873 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPublic()
1874 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPublic()
1875 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPublic()
1880 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPublic()
1881 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPublic()
1882 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPublic()
1883 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPublic()
1884 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPublic()
1889 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPublic()
1890 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPublic()
1891 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPublic()
1892 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPublic()
1893 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PUBLIC; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPublic()
1900 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsProtected()
1901 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsProtected()
1902 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsProtected()
1903 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsProtected()
1904 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsProtected()
1909 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsProtected()
1910 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsProtected()
1911 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsProtected()
1912 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsProtected()
1913 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsProtected()
1918 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsProtected()
1919 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsProtected()
1920 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsProtected()
1921 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsProtected()
1922 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsProtected()
1927 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsProtected()
1928 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsProtected()
1929 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsProtected()
1930 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsProtected()
1931 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PROTECTED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsProtected()
1938 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPackage()
1939 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPackage()
1940 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPackage()
1941 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPackage()
1942 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPackage()
1947 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPackage()
1948 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPackage()
1949 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPackage()
1950 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPackage()
1951 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPackage()
1956 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPackage()
1957 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPackage()
1958 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPackage()
1959 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPackage()
1960 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPackage()
1965 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPackage()
1966 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPackage()
1967 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPackage()
1968 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPackage()
1969 this.reportInvalidJavadocTagsVisibility = CompilerOptions.DEFAULT; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPackage()
1976 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPrivate()
1977 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPrivate()
1978 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefClassErrorTagsPrivate()
1983 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPrivate()
1984 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPrivate()
1985 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefFieldErrorTagsPrivate()
1990 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPrivate()
1991 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPrivate()
1992 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefMethodErrorTagsPrivate()
1997 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPrivate()
1998 this.reportInvalidJavadocTagsDeprecatedRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPrivate()
1999 this.reportInvalidJavadocTagsNotVisibleRef = CompilerOptions.DISABLED; in testInvalidTagsDeprecatedAndNotVisibleRefConstructorErrorTagsPrivate()
2014 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorPublicOverriding()
2015 this.reportMissingJavadocTagsVisibility = CompilerOptions.PUBLIC; in testMissingTagsErrorPublicOverriding()
2016 this.reportMissingJavadocTagsOverriding = CompilerOptions.ENABLED; in testMissingTagsErrorPublicOverriding()
2023 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorPublic()
2024 this.reportMissingJavadocTagsVisibility = CompilerOptions.PUBLIC; in testMissingTagsErrorPublic()
2025 this.reportMissingJavadocTagsOverriding = CompilerOptions.DISABLED; in testMissingTagsErrorPublic()
2032 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorProtectedOverriding()
2033 this.reportMissingJavadocTagsVisibility = CompilerOptions.PROTECTED; in testMissingTagsErrorProtectedOverriding()
2034 this.reportMissingJavadocTagsOverriding = CompilerOptions.ENABLED; in testMissingTagsErrorProtectedOverriding()
2041 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorProtected()
2042 this.reportMissingJavadocTagsVisibility = CompilerOptions.PROTECTED; in testMissingTagsErrorProtected()
2043 this.reportMissingJavadocTagsOverriding = CompilerOptions.DISABLED; in testMissingTagsErrorProtected()
2050 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorPackageOverriding()
2051 this.reportMissingJavadocTagsVisibility = CompilerOptions.DEFAULT; in testMissingTagsErrorPackageOverriding()
2052 this.reportMissingJavadocTagsOverriding = CompilerOptions.ENABLED; in testMissingTagsErrorPackageOverriding()
2059 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorPackage()
2060 this.reportMissingJavadocTagsVisibility = CompilerOptions.DEFAULT; in testMissingTagsErrorPackage()
2061 this.reportMissingJavadocTagsOverriding = CompilerOptions.DISABLED; in testMissingTagsErrorPackage()
2068 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorPrivateOverriding()
2069 this.reportMissingJavadocTagsVisibility = CompilerOptions.PRIVATE; in testMissingTagsErrorPrivateOverriding()
2070 this.reportMissingJavadocTagsOverriding = CompilerOptions.ENABLED; in testMissingTagsErrorPrivateOverriding()
2077 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsErrorPrivate()
2078 this.reportMissingJavadocTagsVisibility = CompilerOptions.PRIVATE; in testMissingTagsErrorPrivate()
2079 this.reportMissingJavadocTagsOverriding = CompilerOptions.DISABLED; in testMissingTagsErrorPrivate()
2094 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorPublicOverriding()
2095 this.reportMissingJavadocCommentsVisibility = CompilerOptions.PUBLIC; in testMissingCommentsErrorPublicOverriding()
2096 this.reportMissingJavadocCommentsOverriding = CompilerOptions.ENABLED; in testMissingCommentsErrorPublicOverriding()
2103 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorPublic()
2104 this.reportMissingJavadocCommentsVisibility = CompilerOptions.PUBLIC; in testMissingCommentsErrorPublic()
2105 this.reportMissingJavadocCommentsOverriding = CompilerOptions.DISABLED; in testMissingCommentsErrorPublic()
2112 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorProtectedOverriding()
2113 this.reportMissingJavadocCommentsVisibility = CompilerOptions.PROTECTED; in testMissingCommentsErrorProtectedOverriding()
2114 this.reportMissingJavadocCommentsOverriding = CompilerOptions.ENABLED; in testMissingCommentsErrorProtectedOverriding()
2121 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorProtected()
2122 this.reportMissingJavadocCommentsVisibility = CompilerOptions.PROTECTED; in testMissingCommentsErrorProtected()
2123 this.reportMissingJavadocCommentsOverriding = CompilerOptions.DISABLED; in testMissingCommentsErrorProtected()
2130 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorPackageOverriding()
2131 this.reportMissingJavadocCommentsVisibility = CompilerOptions.DEFAULT; in testMissingCommentsErrorPackageOverriding()
2132 this.reportMissingJavadocCommentsOverriding = CompilerOptions.ENABLED; in testMissingCommentsErrorPackageOverriding()
2139 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorPackage()
2140 this.reportMissingJavadocCommentsVisibility = CompilerOptions.DEFAULT; in testMissingCommentsErrorPackage()
2141 this.reportMissingJavadocCommentsOverriding = CompilerOptions.DISABLED; in testMissingCommentsErrorPackage()
2148 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorPrivateOverriding()
2149 this.reportMissingJavadocCommentsVisibility = CompilerOptions.PRIVATE; in testMissingCommentsErrorPrivateOverriding()
2150 this.reportMissingJavadocCommentsOverriding = CompilerOptions.ENABLED; in testMissingCommentsErrorPrivateOverriding()
2157 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsErrorPrivate()
2158 this.reportMissingJavadocCommentsVisibility = CompilerOptions.PRIVATE; in testMissingCommentsErrorPrivate()
2159 this.reportMissingJavadocCommentsOverriding = CompilerOptions.DISABLED; in testMissingCommentsErrorPrivate()
2168 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testInvalidTagsClassWithMissingTagsOption()
2169 this.reportMissingJavadocTagsVisibility = CompilerOptions.PRIVATE; in testInvalidTagsClassWithMissingTagsOption()
2173 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testInvalidTagsFieldWithMissingTagsOption()
2174 this.reportMissingJavadocTagsVisibility = CompilerOptions.PRIVATE; in testInvalidTagsFieldWithMissingTagsOption()
2178 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testInvalidTagsMethodWithMissingTagsOption()
2179 this.reportMissingJavadocTagsVisibility = CompilerOptions.PRIVATE; in testInvalidTagsMethodWithMissingTagsOption()
2183 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testInvalidTagsConstructorWithMissingTagsOption()
2184 this.reportMissingJavadocTagsVisibility = CompilerOptions.PRIVATE; in testInvalidTagsConstructorWithMissingTagsOption()
2188 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testMissingTagsWithInvalidTagsOption()
2189 this.reportInvalidJavadocTags = CompilerOptions.ENABLED; in testMissingTagsWithInvalidTagsOption()
2190 this.reportInvalidJavadocTagsVisibility = CompilerOptions.PRIVATE; in testMissingTagsWithInvalidTagsOption()
2200 this.docCommentSupport = CompilerOptions.DISABLED; in testInvalidTagsJavadocSupportDisabled()
2201 this.reportInvalidJavadoc = CompilerOptions.ERROR; in testInvalidTagsJavadocSupportDisabled()
2202 this.reportInvalidJavadocTags = CompilerOptions.ERROR; in testInvalidTagsJavadocSupportDisabled()
2211 this.docCommentSupport = CompilerOptions.DISABLED; in testMissingCommentsJavadocSupportDisabled()
2212 this.reportMissingJavadocComments = CompilerOptions.ERROR; in testMissingCommentsJavadocSupportDisabled()
2218 this.docCommentSupport = CompilerOptions.DISABLED; in testMissingTagsJavadocSupportDisabled()
2219 this.reportMissingJavadocTags = CompilerOptions.ERROR; in testMissingTagsJavadocSupportDisabled()