Smalltalk current createPackage: 'Helios-Commands' properties: #{}!
Object subclass: #HLCommand
	instanceVariableNames: ''
	package: 'Helios-Commands'!

!HLCommand methodsFor: 'accessing'!

documentation
	^ ''
!

label
	self subclassResponsibility
! !