gui/PPRenameProdcutionRefactoring.st
author Claus Gittinger <cg@exept.de>
Tue, 04 Mar 2014 22:18:05 +0100
changeset 344 c0090f685ea8
parent 340 51d23338b32e
child 362 0809350b82c2
permissions -rw-r--r--
class: PPRenameProdcutionRefactoring class definition

"{ Package: 'stx:goodies/petitparser/gui' }"

Refactoring subclass:#PPRenameProdcutionRefactoring
	instanceVariableNames:'oldProduction newProduction class'
	classVariableNames:''
	poolDictionaries:''
	category:'PetitGui-Refactoring'
!


!PPRenameProdcutionRefactoring class methodsFor:'instance creation'!

onClass: aClass rename: anOldSelector to: aNewSelector
	^ self new
		setClass: aClass;
		setOldProduction: anOldSelector;
		setNewProduction: aNewSelector;
		yourself
! !

!PPRenameProdcutionRefactoring methodsFor:'initialization'!

setClass: aClass
	class := self classObjectFor: aClass
!

setNewProduction: aSymbol
	newProduction := aSymbol
!

setOldProduction: aSymbol
	oldProduction := aSymbol
! !

!PPRenameProdcutionRefactoring methodsFor:'preconditions'!

preconditions
	^ self checkCompositeParser: class
! !

!PPRenameProdcutionRefactoring methodsFor:'transforming'!

transform
	| baseClass oldEnvironment |
	baseClass := class whoDefinesInstanceVariable: oldProduction asString.
	self performComponentRefactoring: (RBRenameInstanceVariableRefactoring
		model: model
		rename: oldProduction asString
		to: newProduction asString
		in: baseClass).
	oldEnvironment := model environment.
	model environment: (model environment
		forClasses: baseClass realClass withAllSubclasses).
	[ self performComponentRefactoring: (RBRenameMethodRefactoring
		model: model
		renameMethod: oldProduction asSymbol
		in: baseClass
		to: newProduction asSymbol 
		permutation: #()) ]
			ensure: [ model environment: oldEnvironment ]
! !

!PPRenameProdcutionRefactoring class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/gui/PPRenameProdcutionRefactoring.st,v 1.2 2014-03-04 21:18:05 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/gui/PPRenameProdcutionRefactoring.st,v 1.2 2014-03-04 21:18:05 cg Exp $'
! !