CustomBrowserChangeManager.st
author Jakub Nesveda <jakubnesveda@seznam.cz>
Tue, 28 Oct 2014 09:39:46 +0100
changeset 711 605ab7fc9cd1
parent 556 107e4a470e73
child 803 95cdac772759
permissions -rw-r--r--
return whole source code when selected interval is empty retrieve selector from method when none selector is specified

"{ Package: 'jn:refactoring_custom' }"

CustomChangeManager subclass:#CustomBrowserChangeManager
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Refactoring-Custom'
!

!CustomBrowserChangeManager class methodsFor:'documentation'!

documentation
"
    Implementation of global Browser refactory changes 
    - so you could see them for example in Browser - Operations menu.

    [author:]
        Jakub Nesveda <nesvejak@fit.cvut.cz>  

"
! !

!CustomBrowserChangeManager methodsFor:'performing-changes'!

performChange: aRefactoringChange

    RefactoryChangeManager instance performChange: aRefactoringChange

    "Created: / 31-05-2014 / 13:20:19 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
! !