git/GitResetType.st
author vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
Mon, 17 Sep 2012 20:28:12 +0000
changeset 5 57c20a77e549
child 27 a36a11925d3f
permissions -rw-r--r--
- Refactored to use handles

"{ Package: 'stx:libscm/git' }"

SharedPool subclass:#GitResetType
	instanceVariableNames:''
	classVariableNames:'RESET_SOFT RESET_MIXED'
	poolDictionaries:''
	category:'Git-Internal-Constants'
!


!GitResetType class methodsFor:'initialization'!

initialize

    RESET_SOFT := 1.
    RESET_MIXED := 2.
! !

!GitResetType class methodsFor:'constants'!

RESET_MIXED

    ^RESET_MIXED
!

RESET_SOFT

    ^RESET_SOFT
! !

!GitResetType class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !

GitResetType initialize!