Top Description Methods
com.sun.source.tree

public Interface ContinueTree

extends StatementTree
Known Direct Implementers
com.sun.tools.javac.tree.JCTree.JCContinue
Imports
javax.lang.model.element.Name

A tree node for a continue statement. For example:
  continue;
  continue label ;
Authors
Peter von der Ahé, Jonathan Gibbons
Since
1.6
Java Language Specification
14.16 The continue Statement

Method Summary

Modifier and TypeMethod and Description
public Name

Returns:

the label
getLabel
()

Returns the label for this continue statement.

Method Detail

getLabelback to summary
public Name getLabel()

Returns the label for this continue statement.

Returns:Name

the label