Package org.eclipse.cdt.doxygen.core
Interface DoxygenPreferences
-
public interface DoxygenPreferences
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DoxygenMetadata
metadata()
Return the metadata for the options to be used in UI, must not returnnull
org.eclipse.core.runtime.preferences.IPreferenceMetadataStore
projectStorage(org.eclipse.core.resources.IProject project)
Returns the project-specific storage for doxygen options to be used in UI, must not returnnull
org.eclipse.core.runtime.preferences.IPreferenceMetadataStore
workspaceStorage()
Returns the workspace storage for doxygen options to be used in UI, must not returnnull
-
-
-
Method Detail
-
workspaceStorage
org.eclipse.core.runtime.preferences.IPreferenceMetadataStore workspaceStorage()
Returns the workspace storage for doxygen options to be used in UI, must not returnnull
- Returns:
- the workspace storage for doxygen options
-
projectStorage
org.eclipse.core.runtime.preferences.IPreferenceMetadataStore projectStorage(org.eclipse.core.resources.IProject project)
Returns the project-specific storage for doxygen options to be used in UI, must not returnnull
- Parameters:
project
- scope for the storage, must not benull
- Returns:
- the project-specific storage for doxygen options
-
metadata
DoxygenMetadata metadata()
Return the metadata for the options to be used in UI, must not returnnull
- Returns:
- the doxygen option metadata
-
-