|
Java example source code file (ExecutableMemberDocImpl.java)
The ExecutableMemberDocImpl.java Java example source code/* * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.tools.javadoc; import java.lang.reflect.Modifier; import java.text.CollationKey; import com.sun.javadoc.*; import com.sun.source.util.TreePath; import com.sun.tools.javac.code.Flags; import com.sun.tools.javac.code.Symbol.*; import com.sun.tools.javac.code.Type; import com.sun.tools.javac.util.List; import com.sun.tools.javac.util.ListBuffer; /** * Represents a method or constructor of a java class. * * <p>This is NOT part of any supported API. * If you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice.</b> * * @since 1.2 * @author Robert Field * @author Neal Gafter (rewrite) * @author Scott Seligman (generics, annotations) */ public abstract class ExecutableMemberDocImpl extends MemberDocImpl implements ExecutableMemberDoc { protected final MethodSymbol sym; /** * Constructor. */ public ExecutableMemberDocImpl(DocEnv env, MethodSymbol sym, TreePath treePath) { super(env, sym, treePath); this.sym = sym; } /** * Constructor. */ public ExecutableMemberDocImpl(DocEnv env, MethodSymbol sym) { this(env, sym, null); } /** * Returns the flags in terms of javac's flags */ protected long getFlags() { return sym.flags(); } /** * Identify the containing class */ protected ClassSymbol getContainingClass() { return sym.enclClass(); } /** * Return true if this method is native */ public boolean isNative() { return Modifier.isNative(getModifiers()); } /** * Return true if this method is synchronized */ public boolean isSynchronized() { return Modifier.isSynchronized(getModifiers()); } /** * Return true if this method was declared to take a variable number * of arguments. */ public boolean isVarArgs() { return ((sym.flags() & Flags.VARARGS) != 0 && !env.legacyDoclet); } /** * Returns true if this field was synthesized by the compiler. */ public boolean isSynthetic() { return ((sym.flags() & Flags.SYNTHETIC) != 0); } public boolean isIncluded() { return containingClass().isIncluded() && env.shouldDocument(sym); } /** * Return the throws tags in this method. * * @return an array of ThrowTagImpl containing all {@code @exception} * and {@code @throws} tags. */ public ThrowsTag[] throwsTags() { return comment().throwsTags(); } /** * Return the param tags in this method, excluding the type * parameter tags. * * @return an array of ParamTagImpl containing all {@code @param} tags. */ public ParamTag[] paramTags() { return comment().paramTags(); } /** * Return the type parameter tags in this method. */ public ParamTag[] typeParamTags() { return env.legacyDoclet ? new ParamTag[0] : comment().typeParamTags(); } /** * Return exceptions this method or constructor throws. * * @return an array of ClassDoc[] representing the exceptions * thrown by this method. */ public ClassDoc[] thrownExceptions() { ListBuffer<ClassDocImpl> l = new ListBuffer Other Java examples (source code examples)Here is a short list of links related to this Java ExecutableMemberDocImpl.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.