BookmarkEditor.st
author Claus Gittinger <cg@exept.de>
Fri, 01 Jul 2011 15:15:45 +0200
changeset 9973 d2ddba6dd6f8
child 10082 bdb956e8e195
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9973
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
SimpleDialog subclass:#BookmarkEditor
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Interface-Bookmarks'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
! !
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!BookmarkEditor class methodsFor:'documentation'!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
version_CVS
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    ^ '$Header: /cvs/stx/stx/libtool/BookmarkEditor.st,v 1.1 2011-07-01 13:15:45 cg Exp $'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
!
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
version_SVN
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    ^ '§Id§'
d2ddba6dd6f8 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
! !