Searched refs:isDeprecated (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DDeprecatedAPIListBuilder.java85 if (Util.isDeprecated(pkg)) {
92 if (Util.isDeprecated(cd)) {
129 if (Util.isDeprecated(members[i])) {
H A DIndexBuilder.java232 return !(noDeprecated && Util.isDeprecated(element));
238 (Util.isDeprecated(element) ||
239 Util.isDeprecated(((ProgramElementDoc)element).containingPackage())));
H A DPackageListWriter.java83 if (!(configuration.nodeprecated && Util.isDeprecated(packages[i])))
H A DClassTree.java129 (Util.isDeprecated(classes[i]) ||
130 Util.isDeprecated(classes[i].containingPackage()))) {
H A DClassDocCatalog.java158 if (pkg.isIncluded() || (configuration.nodeprecated && Util.isDeprecated(pkg))) {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java469 this.isDeprecated = deprecated;
505 this.isDeprecated = deprecated;
625 public boolean isDeprecated () method in class:Token
627 return isDeprecated;
629 // isDeprecated
680 boolean isDeprecated = false; // <d62023> field in class:Token
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSourceToHTMLConverter.java87 if (!(configuration.nodeprecated && Util.isDeprecated(pds[i])))
96 (Util.isDeprecated(cds[i]) || Util.isDeprecated(cds[i].containingPackage()))))
121 if (!(configuration.nodeprecated && Util.isDeprecated(cds[i])))
H A DSubWriterHolderWriter.java148 if (Util.isDeprecated((ProgramElementDoc) member)) {
157 if (cd != null && Util.isDeprecated(cd)) {
175 if (Util.isDeprecated((ProgramElementDoc) member)) {
186 if (cd != null && Util.isDeprecated(cd)) {
H A DTagletWriterImpl.java75 if (Util.isDeprecated((ProgramElementDoc) doc)) {
91 if (Util.isDeprecated((ProgramElementDoc) doc)) {
102 if (Util.isDeprecated(member.containingClass())) {
H A DPackageIndexFrameWriter.java86 (!(configuration.nodeprecated && Util.isDeprecated(packages[i])))) {
H A DAbstractIndexWriter.java214 if (Util.isDeprecated(element)) {
222 if (Util.isDeprecated(cont)) {
H A DPackageWriterImpl.java149 if (Util.isDeprecated(packageDoc)) {
200 if (Util.isDeprecated(classes[i])) {
H A DTreeWriter.java139 (configuration.nodeprecated && Util.isDeprecated(packages[i]))) {
H A DHtmlDoclet.java208 if (!(configuration.nodeprecated && Util.isDeprecated(packages[i]))) {
H A DPackageIndexWriter.java140 if (configuration.nodeprecated && Util.isDeprecated(packages[i]))
H A DClassUseWriter.java157 Util.isDeprecated(classes[i].containingPackage())))
164 if (!(configuration.nodeprecated && Util.isDeprecated(pkgs[i])))
H A DAnnotationTypeWriterImpl.java259 if (Util.isDeprecated(annotationType)) {
H A DClassWriterImpl.java517 if (Util.isDeprecated(classDoc)) {
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DElements.java108 boolean isDeprecated(Element e); method in interface:Elements
/openjdk7/langtools/test/tools/javac/processing/model/util/deprecation/
H A DTestDeprecation.java27 * @summary Tests Elements.isDeprecated(Element)
86 boolean actualDeprecation = elementUtils.isDeprecated(e);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.java425 return (isDeprecated() || clazz.reportDeprecated(env));
630 if (method.reportDeprecated(env) && !isDeprecated()
874 public final boolean isDeprecated() { method in class:MemberDefinition
H A DClassDefinition.java488 public final boolean isDeprecated() { method in class:ClassDefinition
909 return (isDeprecated()
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java705 return !(Util.isDeprecated(cd) || Util.isDeprecated(cd.containingPackage()));
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DSourceClass.java2103 boolean haveDeprecated = this.isDeprecated();
2115 haveDeprecated |= field.isDeprecated();
2190 if (this.isDeprecated()) {
2380 boolean dep = f.field.isDeprecated();
2424 boolean dep = f.field.isDeprecated();
2509 if (this.isDeprecated()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java370 public boolean isDeprecated(Element e) { method in class:JavacElements

Completed in 98 milliseconds

12