delete_time_action module
from video.time_code import TimeCode from video.video_section import VideoSection class DeleteTimeAction(object): # Add fields as necessary (there will be many!) def __init__(self, video_track, start, end): ''' @todo: Implement me! ''' # NOTE: Think about all the things that have to be saved about the sections we are going # to split or delete soon. Part of the work gets done here part in execute(). # Add helper methods as necessary def get_description(self): # pragma: no cover return "deleting from the video track" def redo(self): #returns nothing ''' @todo: Implement me! ''' def undo(self): # returns nothing ''' @todo: Implement me! ''' def execute(self): #returns nothing ''' @todo: Implement me! '''
Classes
class DeleteTimeAction
class DeleteTimeAction(object): # Add fields as necessary (there will be many!) def __init__(self, video_track, start, end): ''' @todo: Implement me! ''' # NOTE: Think about all the things that have to be saved about the sections we are going # to split or delete soon. Part of the work gets done here part in execute(). # Add helper methods as necessary def get_description(self): # pragma: no cover return "deleting from the video track" def redo(self): #returns nothing ''' @todo: Implement me! ''' def undo(self): # returns nothing ''' @todo: Implement me! ''' def execute(self): #returns nothing ''' @todo: Implement me! '''
Ancestors (in MRO)
- DeleteTimeAction
- __builtin__.object
Methods
def __init__(
self, video_track, start, end)
@todo: Implement me!
def __init__(self, video_track, start, end): ''' @todo: Implement me! '''
def execute(
self)
@todo: Implement me!
def execute(self): #returns nothing ''' @todo: Implement me! '''
def get_description(
self)
def get_description(self): # pragma: no cover return "deleting from the video track"
def redo(
self)
@todo: Implement me!
def redo(self): #returns nothing ''' @todo: Implement me! '''
def undo(
self)
@todo: Implement me!
def undo(self): # returns nothing ''' @todo: Implement me! '''