DirectoryContentsBrowser.st
changeset 6359 53212b2cad15
parent 6298 6aae3f1eaa15
child 6374 f9bed8385350
equal deleted inserted replaced
6358:582d839d5b93 6359:53212b2cad15
  1300 
  1300 
  1301 viewDetails
  1301 viewDetails
  1302     "aspect for show more file properties 
  1302     "aspect for show more file properties 
  1303     "
  1303     "
  1304 
  1304 
  1305     ^ self colVisibilityAspectFor:#viewDetails ifAbsent:[ false asValue ].
  1305     ^ self colVisibilityAspectFor:#viewDetails ifAbsent:[ true asValue ].
  1306 !
  1306 !
  1307 
  1307 
  1308 viewGroup
  1308 viewGroup
  1309     " aspect for show group information "
  1309     " aspect for show group information "
  1310 
  1310 
  1324 !
  1324 !
  1325 
  1325 
  1326 viewOwner
  1326 viewOwner
  1327     " aspect for show owner information "
  1327     " aspect for show owner information "
  1328 
  1328 
  1329     ^ self colVisibilityAspectFor:#viewOwner ifAbsent:[ false asValue ].
  1329     ^ self colVisibilityAspectFor:#viewOwner ifAbsent:[ true asValue ].
  1330 !
  1330 !
  1331 
  1331 
  1332 viewPermissions
  1332 viewPermissions
  1333     " aspect for show permission information "
  1333     " aspect for show permission information "
  1334 
  1334 
  1335     ^ self colVisibilityAspectFor:#viewPermissions ifAbsent:[ false asValue ].
  1335     ^ self colVisibilityAspectFor:#viewPermissions ifAbsent:[ true asValue ].
  1336 !
  1336 !
  1337 
  1337 
  1338 viewPreview
  1338 viewPreview
  1339 
  1339 
  1340     " aspect for show image previev "
  1340     " aspect for show image previev "
  1344 
  1344 
  1345 viewSize
  1345 viewSize
  1346 
  1346 
  1347     " aspect for show size information "
  1347     " aspect for show size information "
  1348 
  1348 
  1349     ^ self colVisibilityAspectFor:#viewSize ifAbsent:[ false asValue ].
  1349     ^ self colVisibilityAspectFor:#viewSize ifAbsent:[ true asValue ].
  1350 !
  1350 !
  1351 
  1351 
  1352 viewSizeInBytes
  1352 viewSizeInBytes
  1353     " aspect for show size-in-bytes information "
  1353     " aspect for show size-in-bytes information "
  1354 
  1354 
  1363 
  1363 
  1364 viewTime
  1364 viewTime
  1365 
  1365 
  1366     " aspect for show time information "
  1366     " aspect for show time information "
  1367 
  1367 
  1368     ^ self colVisibilityAspectFor:#viewTime ifAbsent:[ false asValue ].
  1368     ^ self colVisibilityAspectFor:#viewTime ifAbsent:[ true asValue ].
  1369 !
  1369 !
  1370 
  1370 
  1371 viewType
  1371 viewType
  1372     " aspect for show suffix (type) information "
  1372     " aspect for show suffix (type) information "
  1373 
  1373 
  3197 ! !
  3197 ! !
  3198 
  3198 
  3199 !DirectoryContentsBrowser class methodsFor:'documentation'!
  3199 !DirectoryContentsBrowser class methodsFor:'documentation'!
  3200 
  3200 
  3201 version
  3201 version
  3202     ^ '$Header: /cvs/stx/stx/libtool/DirectoryContentsBrowser.st,v 1.180 2005-05-11 09:30:20 cg Exp $'
  3202     ^ '$Header: /cvs/stx/stx/libtool/DirectoryContentsBrowser.st,v 1.181 2005-07-14 08:50:22 cg Exp $'
  3203 ! !
  3203 ! !