Uses of Class
org.eclipse.datatools.connectivity.oda.spec.result.filter.CustomExpression

Packages that use CustomExpression
org.eclipse.datatools.connectivity.oda.spec.manifest Provides a utility component for accessing the capabilities registered by an ODA extension that implements the org.eclipse.datatools.connectivity.oda.dynamicResultSet extension point. 
org.eclipse.datatools.connectivity.oda.spec.result.filter Defines the concrete filter expressions for use in the Open Data Access (ODA) result set filtering specification. 
org.eclipse.datatools.connectivity.oda.spec.util Defines utilities for use with the Open Data Access (ODA) query specification. 
 

Uses of CustomExpression in org.eclipse.datatools.connectivity.oda.spec.manifest
 

Methods in org.eclipse.datatools.connectivity.oda.spec.manifest that return CustomExpression
 CustomExpression FilterExpressionDefinition.createExpression()
          Creates and returns an instance of CustomExpression for use in an ODA filter specification, based on the class defined in the attribute specified in this definition.
 CustomExpression FilterExpressionDefinition.createExpression(ExpressionVariable variable, ExpressionArguments args)
          Creates and returns an instance of CustomExpression for use in an ODA filter specification, based on the class defined in the attribute specified in this definition.
 

Uses of CustomExpression in org.eclipse.datatools.connectivity.oda.spec.result.filter
 

Methods in org.eclipse.datatools.connectivity.oda.spec.result.filter that return CustomExpression
static CustomExpression InternalFilterFactory.createCustomFilter(java.lang.String extensionId, java.lang.String id)
           
static CustomExpression InternalFilterFactory.createCustomFilter(java.lang.String extensionId, java.lang.String id, ExpressionVariable variable, ExpressionArguments args)
           
 

Uses of CustomExpression in org.eclipse.datatools.connectivity.oda.spec.util
 

Methods in org.eclipse.datatools.connectivity.oda.spec.util that return CustomExpression
static CustomExpression ExpressionFactory.createCustomExpression(java.lang.String extensionId, java.lang.String exprId)
          Creates a custom filter expression instance of the specified filter expression contributed by the specified dynamicResultSet extension.
static CustomExpression ExpressionFactory.createCustomExpression(java.lang.String extensionId, java.lang.String exprId, ExpressionVariable variable, ExpressionArguments args)
          Creates a custom filter expression instance, with the given expression context, of the specified filter expression contributed by the specified dynamicResultSet extension.
 

Methods in org.eclipse.datatools.connectivity.oda.spec.util with parameters of type CustomExpression
static void ValidatorUtil.validateCustomExprExtension(CustomExpression customExpr, java.lang.String expectedExtensionId)
          Validates that the specified CustomExpression is contributed by the specified dynamicResultSet extension id.
static void ValidatorUtil.validateCustomExprType(CustomExpression customExpr, java.lang.Class<?> expectedExprClass)
          Validates the specified CustomExpression to be an instance of the specified class.