Skip to end of banner
Go to start of banner

admGetAllFilters

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Availability

This routine is available starting with SIL Engine 4.8.0.4.

Syntax

admGetAllFilters()

Description

Retrieves all the filters available on the current instance.

Parameters

None.

Return type

JFilter []

Returns a list of filters. 

Example

JFilter []filters = admGetAllFilters();
for(JFilter f in filters) {
	runnerLog("Filter name: " + f.name + "\n" +
			  "Filter description " + f.description + "\n" + 
			  "Filter owner "+ f.owner + "\n" +
			  "Filter query "+ f.query);
}
  • No labels