sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // simple accessors/querying functions sl@0: // sl@0: // sl@0: sl@0: sl@0: inline TInt CSchedule::Id() const sl@0: {return iId;} sl@0: sl@0: inline const TTsTime& CSchedule::DueTime() const sl@0: {return iDueTime;} sl@0: sl@0: inline TBool CSchedule::Persists() const sl@0: {return iPersists;} sl@0: sl@0: inline TBool CSchedule::Enabled() const sl@0: {return iEnabled;} sl@0: sl@0: inline void CSchedule::SetEnabled(TBool aEnabled) sl@0: {iEnabled = aEnabled;} sl@0: sl@0: inline TSglQue* CSchedule::Tasks() sl@0: {return &iTaskList;} sl@0: sl@0: inline TBool CSchedule::HasTasks() const sl@0: {return !(iTaskList.IsEmpty());} sl@0: sl@0: inline const TDesC& CSchedule::Name() const sl@0: {return *iName;} sl@0: sl@0: inline TScheduleType CSchedule::Type() const sl@0: { sl@0: if(iConditions.Count()==0) sl@0: return ETimeSchedule; sl@0: else sl@0: return EConditionSchedule; sl@0: } sl@0: sl@0: inline void CSchedule::CheckAccessAllowedL(const RMessagePtr2& aMessage) const sl@0: { sl@0: if(!IsAccessAllowed(aMessage)) sl@0: User::Leave(KErrPermissionDenied); sl@0: }