org.eclipse.jface.text.source.IAnnotationModelListener Java Examples

The following examples show how to use org.eclipse.jface.text.source.IAnnotationModelListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * @see IAnnotationModelListener#modelChanged(IAnnotationModel)
 */
public void modelChanged(IAnnotationModel model) {
	Object[] listeners= fListenerList.getListeners();
	for (int i= 0; i < listeners.length; i++) {
		((IAnnotationModelListener) listeners[i]).modelChanged(model);
	}
}
 
Example #2
Source File: CompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public void addListener(IAnnotationModelListener listener) {
	fListenerList.add(listener);
}
 
Example #3
Source File: CompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public void removeListener(IAnnotationModelListener listener) {
	fListenerList.remove(listener);
}
 
Example #4
Source File: CompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public void addGlobalAnnotationModelListener(IAnnotationModelListener listener) {
	fGlobalAnnotationModelListener.addListener(listener);
}
 
Example #5
Source File: CompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public void removeGlobalAnnotationModelListener(IAnnotationModelListener listener) {
	fGlobalAnnotationModelListener.removeListener(listener);
}
 
Example #6
Source File: ICompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * Adds a listener that reports changes from all compilation unit annotation models.
 *
 * @param listener the listener
 */
void addGlobalAnnotationModelListener(IAnnotationModelListener listener);
 
Example #7
Source File: ICompilationUnitDocumentProvider.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 2 votes vote down vote up
/**
 * Removes the listener.
 *
 * @param listener the listener
 */
void removeGlobalAnnotationModelListener(IAnnotationModelListener listener);