blob: 220f2a8fcc77a95aeeb7aa27f1ad7028e112cf13 [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.debug.ui.snippeteditor;
/**
* A listener interested in snippet evaluation state changes.
*/
public interface ISnippetStateChangedListener {
/**
* Informs about the changed snippet evaluation state
*/
void snippetStateChanged(JavaSnippetEditor editor);
}