Удалил неиспользуемые файлы

This commit is contained in:
rzaitov
2013-11-01 17:48:35 +04:00
parent 65266b523d
commit 2f2dc3c698
13 changed files with 12 additions and 103 deletions
-8
View File
@@ -1,8 +0,0 @@
import parser.StringValueParser as parser
class AttributeNameParser(parser.StringValueParser):
def __init__(self, attribute_name, model):
parser.StringValueParser.__init__(self, attribute_name, model)
def ProcessToken(self, token):
self._model.rel_path = ''
@@ -1 +0,0 @@
__author__ = 'rzaitov'
@@ -1 +0,0 @@
__author__ = 'rzaitov'
-10
View File
@@ -1,10 +0,0 @@
class StringValueParser:
def __init__(self, valid_string, model):
self._valid_string = valid_string
self._model = model
def IsTokenValid(self, token):
return token == self._valid_string
def ProcessToken(self, token):
pass
-4
View File
@@ -1,4 +0,0 @@
class Token():
def __init__(self, content, type):
self.content = content
self.type = type