Interface
IdeDiagnosticProvider
Prerequisite
In order to implement DiagnosticProvider, your type must inherit fromIdeObject
.
Instance methods
ide_diagnostic_provider_diagnose_async
Requests the provider diagnose file
using contents
as the contents of
the file.
Interface structure
struct IdeDiagnosticProviderInterface {
GTypeInterface parent_iface;
void (* load) (
IdeDiagnosticProvider* self
);
void (* unload) (
IdeDiagnosticProvider* self
);
void (* diagnose_async) (
IdeDiagnosticProvider* self,
GFile* file,
GBytes* contents,
const gchar* lang_id,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
);
IdeDiagnostics* (* diagnose_finish) (
IdeDiagnosticProvider* self,
GAsyncResult* result,
GError** error
);
}
No description available.
Interface members
parent_iface |
|
No description available. | |
load |
|
No description available. | |
unload |
|
No description available. | |
diagnose_async |
|
No description available. | |
diagnose_finish |
|
No description available. |
Virtual methods
Ide.DiagnosticProvider.diagnose_async
Requests the provider diagnose file
using contents
as the contents of
the file.