Static Public Member Functions | |
static boolean | isSupported (String name) |
static OperatorResolver | newResolverInstance (String name) |
static OperatorSettings | newSettingsInstance (String name) |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Tests if the operator is supported. A KDDML operator is supported if there are two classes in the packages list. The first one, named operator name_SETTINGS, contains the attributes specification about the operator; this class must extend the abstract class OperatorSettings. The second one, name operator name_RESOLVER, contains the concrete implementation of the operator; this class must extend the abstract class OperatorResolver.
|
|
Creates a resolver instance of the operator. Returns null if the operator is not supported, i.e., the method isSupported(name) returns false.
|
|
Creates a settings instance of the operator. Returns null if the operator is not supported, i.e., the method isSupported(name) returns false.
|