MCChangeSelectionRequest.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 02 May 2023 14:30:52 +0100
branchjv
changeset 1167 37c202ea81a8
parent 578 3133e0172511
permissions -rw-r--r--
Remove unused Squeak UI code

"
COPYRIGHT (c) 2023 LabWare
"
"{ Package: 'stx:goodies/monticello' }"

"{ NameSpace: Smalltalk }"

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

!MCChangeSelectionRequest class methodsFor:'documentation'!

copyright
"
COPYRIGHT (c) 2023 LabWare


"
! !

!MCChangeSelectionRequest methodsFor:'as yet unclassified'!

defaultAction
    "
        ^ (MCChangeSelector new patch: patch; label: label) showModally
    "
    self notYetImplemented

    "Modified: / 02-05-2023 / 14:28:10 / Jan Vrany <jan.vrany@labware.com>"
!

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 $'
! !