1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 inline TInt CApaDataRecognizerType::MimeTypesCount() const
17 /** Gets the number of data (MIME) types supported by this recognizer.
19 @return The number of data types.
20 @see iCountDataTypes */
22 return iCountDataTypes;
25 inline TUid CApaDataRecognizerType::TypeUid() const
26 /** Gets the UID that identifies the recognizer.
33 inline TInt CApaDataRecognizerType::Priority() const
34 /** Gets the recognizer's priority.
36 The priority defines the likelihood that the recognizer will successfully
37 identify data. This is one of the CApaDataRecognizerType::TRecognizerPriority
40 @return The priority value.
41 @see CApaDataRecognizerType::TRecognizerPriority */
46 inline TInt CApaDataRecognizerType::Confidence() const
47 /** Gets the recognizer's confidence rating for the most recently recognized data.
49 @return The confidence rating. This is one of the TRecognitionConfidence enumeration
51 @see CApaDataRecognizerType::TRecognitionConfidence
57 inline TInt CApaDataRecognizerType::Locked() const
58 /** Tests whether the recognizer is locked.
60 @return If zero, the recognizer is not locked; if greater than 0, the recognizer
68 // Deprecated - Use CApaDataRecognizer::AddDataRecognizerTypeL instead
69 // as adding a concrete recognizer into the list could leave.
73 inline void CApaDataRecognizer::AddDataRecognizerType(CApaDataRecognizerType* aDataRecognizerType)
75 AddDataRecognizerTypeL(aDataRecognizerType);