1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

More detailed JavaDoc to ICListenerAgent

This commit is contained in:
Andrew Gvozdev 2013-03-09 19:55:45 -05:00
parent ae1e68cd09
commit 338da6c867

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2011 Andrew Gvozdev and others.
* Copyright (c) 2011, 2013 Andrew Gvozdev and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -30,14 +30,18 @@ import org.eclipse.cdt.core.settings.model.ICConfigurationDescription;
*/
public interface ICListenerAgent {
/**
* Registers a specific listener.
*
* Provides an opportunity for the provider to register specific listeners.
* Called by CDT core when {@linkplain ICListenerAgent} added
* to the list of {@link ILanguageSettingsProvider}s managed by the model.
*
* @param cfgDescription - configuration description for the listener.
*/
public void registerListener(ICConfigurationDescription cfgDescription);
/**
* Unregister listener and dispose all resources.
* Unregister listeners and dispose all resources.
* Called by CDT core when {@linkplain ICListenerAgent} removed
* from the list of {@link ILanguageSettingsProvider}s managed by the model.
*/
public void unregisterListener();
}