AbstractLauncherApplication.st
changeset 9084 3b0b89c91c71
parent 9052 aae80fba7ea3
child 9137 d252e24bd64b
equal deleted inserted replaced
9083:93e4389dd000 9084:3b0b89c91c71
  1548 !AbstractLauncherApplication methodsFor:'user actions-tools'!
  1548 !AbstractLauncherApplication methodsFor:'user actions-tools'!
  1549 
  1549 
  1550 inspectGlobalVariables
  1550 inspectGlobalVariables
  1551     "inspect globals"
  1551     "inspect globals"
  1552 
  1552 
       
  1553     WorkspaceApplication notNil ifTrue:[
       
  1554         "/ looks nicer...
       
  1555         WorkspaceApplication openWithGlobalsInspector.
       
  1556         ^ self.
       
  1557     ].
  1553     Smalltalk inspect
  1558     Smalltalk inspect
  1554 !
  1559 !
  1555 
  1560 
  1556 inspectWorkspaceVariables
  1561 inspectWorkspaceVariables
  1557     "inspect workspace variables"
  1562     "inspect workspace variables"
  1558 
  1563 
  1559     Workspace workspaceVariables inspect
  1564     WorkspaceApplication notNil ifTrue:[
       
  1565         "/ looks nicer...
       
  1566         WorkspaceApplication openWithWorkspaceVariableInspector.
       
  1567         ^ self.
       
  1568     ].
       
  1569     "/ Workspace workspaceVariables inspect
  1560 !
  1570 !
  1561 
  1571 
  1562 newProject 
  1572 newProject 
  1563     "creates a new project & opens a projectView for it"
  1573     "creates a new project & opens a projectView for it"
  1564 
  1574 
  6704 ! !
  6714 ! !
  6705 
  6715 
  6706 !AbstractLauncherApplication class methodsFor:'documentation'!
  6716 !AbstractLauncherApplication class methodsFor:'documentation'!
  6707 
  6717 
  6708 version
  6718 version
  6709     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.383 2009-10-22 17:41:01 cg Exp $'
  6719     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.384 2009-10-26 16:19:31 cg Exp $'
  6710 !
  6720 !
  6711 
  6721 
  6712 version_CVS
  6722 version_CVS
  6713     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.383 2009-10-22 17:41:01 cg Exp $'
  6723     ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.384 2009-10-26 16:19:31 cg Exp $'
  6714 ! !
  6724 ! !