SVN__WCActionDeleted.st
author mawalch
Mon, 08 Aug 2016 20:14:05 +0200
changeset 1177 dc7a7fa9bae9
parent 807 3516926a4783
permissions -rw-r--r--
#OTHER by mawalch Fix ridiculously propagated typo.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
716
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     1
"
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     4
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     6
 obtaining a copy of this software and associated documentation
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     7
 files (the 'Software'), to deal in the Software without
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     8
 restriction, including without limitation the rights to use,
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    10
 copies of the Software, and to permit persons to whom the
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    11
 Software is furnished to do so, subject to the following
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    12
 conditions:
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    13
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    14
 The above copyright notice and this permission notice shall be
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    15
 included in all copies or substantial portions of the Software.
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    16
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    25
"
428
bef1b88a501e *** empty log message ***
fm
parents: 328
diff changeset
    26
"{ Package: 'stx:libsvn' }"
82
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    27
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    28
"{ NameSpace: SVN }"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    29
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    30
WCAction subclass:#WCActionDeleted
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    31
	instanceVariableNames:''
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    32
	classVariableNames:''
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    33
	poolDictionaries:''
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    34
	category:'SVN-Working copy'
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    35
!
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    36
716
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    37
!WCActionDeleted class methodsFor:'documentation'!
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    38
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    39
copyright
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    40
"
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    41
 Copyright (c) 2007-2010 Jan Vrany
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    42
 Copyright (c) 2009-2010 eXept Software AG
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    43
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    45
 obtaining a copy of this software and associated documentation
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    46
 files (the 'Software'), to deal in the Software without
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    47
 restriction, including without limitation the rights to use,
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    49
 copies of the Software, and to permit persons to whom the
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    50
 Software is furnished to do so, subject to the following
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    51
 conditions:
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    52
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    53
 The above copyright notice and this permission notice shall be
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    54
 included in all copies or substantial portions of the Software.
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    55
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    64
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    65
"
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    66
! !
82
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    67
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    68
!WCActionDeleted class methodsFor:'accessing'!
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    69
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    70
actionName
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    71
    "Superclass says that I am responsible to implement this method"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    72
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    73
    ^'D'
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    74
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    75
    "Created: / 16-03-2008 / 08:49:10 / janfrog"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    76
! !
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    77
716
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    78
!WCActionDeleted class methodsFor:'others'!
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    79
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    80
version_CVS
807
3516926a4783 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 716
diff changeset
    81
    ^ '$Header$'
716
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    82
! !
49835f2edcfd Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 428
diff changeset
    83
82
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    84
!WCActionDeleted methodsFor:'accessing'!
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    85
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    86
icon
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    87
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    88
    ^SVN::IconLibrary delete
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    89
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    90
    "Created: / 24-06-2009 / 15:07:57 / Jan Vrany <vranyj1@fel.cvut.cz>"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    91
! !
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    92
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    93
!WCActionDeleted methodsFor:'processing'!
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    94
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    95
processEntry: entry using: processor 
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    96
    "
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    97
             Double dispath to a processor, passing an entry"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    98
    
2d096d67ec8c initial checkin
fm
parents:
diff changeset
    99
    processor processDeletedEntry: entry
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   100
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   101
    "Modified: / 27-08-2009 / 08:50:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   102
! !
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   103
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   104
!WCActionDeleted methodsFor:'testing'!
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   105
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   106
isDeleted
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   107
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   108
    ^true
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   109
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   110
    "Created: / 17-08-2009 / 19:47:07 / Jan Vrany <vranyj1@fel.cvut.cz>"
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   111
! !
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   112
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   113
!WCActionDeleted class methodsFor:'documentation'!
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   114
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   115
version
807
3516926a4783 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 716
diff changeset
   116
    ^ '$Header$'
192
914bc7fc4b6c changed: #version_SVN
fm
parents: 82
diff changeset
   117
!
914bc7fc4b6c changed: #version_SVN
fm
parents: 82
diff changeset
   118
914bc7fc4b6c changed: #version_SVN
fm
parents: 82
diff changeset
   119
version_SVN
807
3516926a4783 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 716
diff changeset
   120
    ^ '§Id: SVN__WCActionDeleted.st 363 2011-08-08 13:49:48Z vranyj1 §'
82
2d096d67ec8c initial checkin
fm
parents:
diff changeset
   121
! !