sbsv2/raptor/python/plugins/filter_check.py
branchwip
changeset 116 9874c5dbccd7
child 132 2022a4abb126
equal deleted inserted replaced
115:5869e06bf2ac 116:9874c5dbccd7
       
     1 #
       
     2 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the License "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 # Filter class for doing --what and --check operations
       
    16 #
       
    17 
       
    18 import os
       
    19 import sys
       
    20 import re
       
    21 import filter_interface
       
    22 import filter_what
       
    23 
       
    24 class FilterCheck(filter_what.FilterWhat):
       
    25 
       
    26         def __init__(self): 
       
    27 		super(filter_what.FilterWhat,self).__init__()
       
    28 		self.check = True
       
    29