AbstractFileBrowser.st
changeset 5290 8aeb40fef0f7
parent 5273 b65451d5872a
child 5300 260ccc2864cb
equal deleted inserted replaced
5289:65d94026da0e 5290:8aeb40fef0f7
  2487 
  2487 
  2488     ^ nil.
  2488     ^ nil.
  2489 !
  2489 !
  2490 
  2490 
  2491 openApplByFileItem:anItem
  2491 openApplByFileItem:anItem
  2492 
       
  2493     self 
  2492     self 
  2494         applicationNamed:#FileApplicationNoteBook
  2493         applicationNamed:#FileApplicationNoteBook
  2495         ifPresentDo:[:appl | ^ appl openApplByFileItem:anItem].
  2494         ifPresentDo:[:appl | appl openApplByFileItem:anItem. ^self].
  2496 
       
  2497     ^ nil
       
  2498 !
  2495 !
  2499 
  2496 
  2500 openApplForFile:aFilename
  2497 openApplForFile:aFilename
  2501     ^ self openApplByFileItem:(DirectoryContentsBrowser itemClass fileName:aFilename).
  2498     self openApplByFileItem:(DirectoryContentsBrowser itemClass fileName:aFilename).
  2502 !
  2499 !
  2503 
  2500 
  2504 openCommandResultApplication
  2501 openCommandResultApplication
  2505 
  2502 
  2506     self 
  2503     self 
  6425 ! !
  6422 ! !
  6426 
  6423 
  6427 !AbstractFileBrowser class methodsFor:'documentation'!
  6424 !AbstractFileBrowser class methodsFor:'documentation'!
  6428 
  6425 
  6429 version
  6426 version
  6430     ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.177 2003-10-13 13:32:00 cg Exp $'
  6427     ^ '$Header: /cvs/stx/stx/libtool/AbstractFileBrowser.st,v 1.178 2003-10-21 18:20:57 cg Exp $'
  6431 ! !
  6428 ! !