blob: a03390d7edecf4c89982f9691db00eab80a5cccd [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);
}