MCChangeSelectionRequest.st
author Claus Gittinger <cg@exept.de>
Sat, 01 Sep 2018 17:35:45 +0200
changeset 1094 55a945c18a3e
parent 578 3133e0172511
child 1167 37c202ea81a8
permissions -rw-r--r--
#FEATURE by cg class: MCFileTreeRepository changed: #repositoryBranchName #repositoryProperties #repositoryVersionString class: MCFileTreeRepository class comment/format in: #parseName:extension:

"{ Package: 'stx:goodies/monticello' }"

Notification subclass:#MCChangeSelectionRequest
	instanceVariableNames:'patch label'
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Versioning'
!


!MCChangeSelectionRequest methodsFor:'as yet unclassified'!

defaultAction
	^ (MCChangeSelector new patch: patch; label: label) showModally
!

label
	^ label
!

label: aString
	label _ aString
!

patch
	^ patch
!

patch: aPatch
	patch _ aPatch
! !

!MCChangeSelectionRequest class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCChangeSelectionRequest.st,v 1.2 2012-09-11 21:01:10 cg Exp $'
! !