Helios-Commands.st 253 B

123456789101112131415
  1. Smalltalk current createPackage: 'Helios-Commands' properties: #{}!
  2. Object subclass: #HLCommand
  3. instanceVariableNames: ''
  4. package: 'Helios-Commands'!
  5. !HLCommand methodsFor: 'accessing'!
  6. documentation
  7. ^ ''
  8. !
  9. label
  10. self subclassResponsibility
  11. ! !