# HG changeset patch # User Michael Van De Vanter # Date 1428728018 25200 # Node ID 129a0981506333fc2da7fca9aeb28bd061556df9 # Parent 263ab98b3bf0c3900d16d9b40fc97c6ef3043f52 Truffle/Instrumentation: eclipseformat diff -r 263ab98b3bf0 -r 129a09815063 graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Instrument.java --- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Instrument.java Fri Apr 10 21:14:14 2015 -0700 +++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/Instrument.java Fri Apr 10 21:53:38 2015 -0700 @@ -69,8 +69,9 @@ *

*

    *
  1. Implement one of the listener interfaces: {@link SimpleInstrumentListener} or - * {@link StandardInstrumentListener} . Their event handling methods account for both the entry into an - * AST node (about to call) and three possible kinds of execution return from an AST node.
  2. + * {@link StandardInstrumentListener} . Their event handling methods account for both the entry into + * an AST node (about to call) and three possible kinds of execution return from an AST + * node. *
  3. Extend one of the helper implementations: {@link DefaultSimpleInstrumentListener} or * {@link DefaultStandardInstrumentListener}. These provide no-op implementation of every listener * method, so only the methods of interest need to be overridden.
  4. @@ -85,8 +86,8 @@ * implement a debugger with this interface. *

    *

    - * As a consequence, implementations of {@link StandardInstrumentListener} effectively become part of - * the Truffle execution and must be coded according to general guidelines for Truffle + * As a consequence, implementations of {@link StandardInstrumentListener} effectively become part + * of the Truffle execution and must be coded according to general guidelines for Truffle * implementations. For example: *