comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/ReplaceObserver.java @ 13874:c35d86f53ace

fix Truffle JavaDoc
author Christian Wirth <christian.wirth@oracle.com>
date Wed, 05 Feb 2014 11:38:00 +0100
parents 494b818b527c
children f46cab39a9a2
comparison
equal deleted inserted replaced
13873:c2000a61fb9a 13874:c35d86f53ace
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api; 25 package com.oracle.truffle.api;
26 26
27 /**
28 * An observer that is notified whenever a child node is replaced.
29 */
27 public interface ReplaceObserver { 30 public interface ReplaceObserver {
28 31
29 void nodeReplaced(); 32 void nodeReplaced();
30 } 33 }