remove_action module
from video.video_section import VideoSection class RemoveAction(object): # Add fields as necessary def __init__(self, video_track, section_to_remove): ''' @todo: Implement me! ''' def get_description(self): return "removing a video section" def redo(self): #returns nothing ''' @todo: Implement me! ''' def undo(self): # returns nothing ''' @todo: Implement me! ''' def execute(self): #returns nothing ''' @todo: Implement me! ''' # find the section to be removed
Classes
class RemoveAction
class RemoveAction(object): # Add fields as necessary def __init__(self, video_track, section_to_remove): ''' @todo: Implement me! ''' def get_description(self): return "removing a video section" 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)
- RemoveAction
- __builtin__.object
Methods
def __init__(
self, video_track, section_to_remove)
@todo: Implement me!
def __init__(self, video_track, section_to_remove): ''' @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): return "removing a video section"
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! '''