diff --git a/scripts/parser/CopyParser/CopyArguments.py b/scripts/parser/CopyParser/CopyArguments.py new file mode 100644 index 0000000..f33d049 --- /dev/null +++ b/scripts/parser/CopyParser/CopyArguments.py @@ -0,0 +1,17 @@ +__author__ = 'rzaitov' + + +class CopyArguments(): + def __init__(self): + self.__source = None + self.__target = None + + def setArguments(self, source, target): + self.__source = source + self.__target = target + + def isValid(self): + result = self.__source is not None + result &= self.__target is not None + + return result \ No newline at end of file diff --git a/scripts/parser/CopyParser/__init__.py b/scripts/parser/CopyParser/__init__.py new file mode 100644 index 0000000..cc31abc --- /dev/null +++ b/scripts/parser/CopyParser/__init__.py @@ -0,0 +1 @@ +__author__ = 'rzaitov'