Tabnine Logo
Javadoc.printIndent
Code IndexAdd Tabnine to your IDE (free)

How to use
printIndent
method
in
org.eclipse.jdt.internal.compiler.ast.Javadoc

Best Java code snippets using org.eclipse.jdt.internal.compiler.ast.Javadoc.printIndent (Showing top 11 results out of 315)

origin: org.eclipse.jdt.core.compiler/ecj

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: com.ovea.tajin.server/tajin-server-tomcat7

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: org.eclipse.scout.sdk.deps/ecj

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: com.vaadin/vaadin-client-compiler-deps

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: org.eclipse.jdt/org.eclipse.jdt.core

@Override
public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: org.eclipse.tycho/org.eclipse.jdt.core

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: org.eclipse.jetty.orbit/org.eclipse.jdt.core

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
origin: trylimits/Eclipse-Postfix-Code-Completion

public StringBuffer print(int indent, StringBuffer output) {
  printIndent(indent, output).append("/**\n"); //$NON-NLS-1$
  if (this.paramReferences != null) {
    for (int i = 0, length = this.paramReferences.length; i < length; i++) {
      printIndent(indent + 1, output).append(" * @param "); //$NON-NLS-1$
      this.paramReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @param <"); //$NON-NLS-1$
      this.paramTypeParameters[i].print(indent, output).append(">\n"); //$NON-NLS-1$
    printIndent(indent + 1, output).append(" * @"); //$NON-NLS-1$
    this.returnStatement.print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @throws "); //$NON-NLS-1$
      this.exceptionReferences[i].print(indent, output).append('\n');
      printIndent(indent + 1, output).append(" * @see "); //$NON-NLS-1$
      this.seeReferences[i].print(indent, output).append('\n');
  printIndent(indent, output).append(" */\n"); //$NON-NLS-1$
  return output;
org.eclipse.jdt.internal.compiler.astJavadocprintIndent

Popular methods of Javadoc

  • <init>
  • print
  • canBeSeen
    Returns whether a type can be seen at a given visibility level or not.
  • resolve
  • resolveParamTags
  • resolveReference
  • resolveThrowsTags
  • resolveTypeParameterTags
  • traverse
  • verifyTypeReference
  • getNodeStartingAt
  • toString
  • getNodeStartingAt,
  • toString,
  • sourceEnd

Popular in Java

  • Finding current android device location
  • findViewById (Activity)
  • onCreateOptionsMenu (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Join (org.hibernate.mapping)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now