ResourceSpecEditor.st
changeset 868 f35e6c622a98
parent 867 9da1ff2ac50d
child 876 585929b1fec2
equal deleted inserted replaced
867:9da1ff2ac50d 868:f35e6c622a98
    91 
    91 
    92 !
    92 !
    93 
    93 
    94 resourceType
    94 resourceType
    95 
    95 
    96     ^#list
    96     ^self subclassResponsibility
    97 ! !
    97 ! !
    98 
    98 
    99 !ResourceSpecEditor class methodsFor:'aspects'!
    99 !ResourceSpecEditor class methodsFor:'aspects'!
   100 
   100 
   101 aspects
   101 aspects
   190 ! !
   190 ! !
   191 
   191 
   192 !ResourceSpecEditor methodsFor:'building'!
   192 !ResourceSpecEditor methodsFor:'building'!
   193 
   193 
   194 buildFromResourceSpec: aResourceSpec
   194 buildFromResourceSpec: aResourceSpec
   195     "do nothing here; concrete subclass has to reimplement this method
   195     "concrete subclass has to reimplement this method
   196      in order to build its resource spec from aResourceSpec"
   196      in order to build its resource spec from aResourceSpec"
   197 
   197 
   198 
   198     ^self subclassResponsibility
   199 ! !
   199 ! !
   200 
   200 
   201 !ResourceSpecEditor methodsFor:'change & update'!
   201 !ResourceSpecEditor methodsFor:'change & update'!
   202 
   202 
   203 update:something with:aParameter from:someObject
   203 update:something with:aParameter from:someObject
   540 ! !
   540 ! !
   541 
   541 
   542 !ResourceSpecEditor class methodsFor:'documentation'!
   542 !ResourceSpecEditor class methodsFor:'documentation'!
   543 
   543 
   544 version
   544 version
   545     ^ '$Header: /files/CVS/stx/libview2/ResourceSpecEditor.st,v'
   545     ^ '$Header: /cvs/stx/stx/libview2/ResourceSpecEditor.st,v 1.2 1998-03-20 15:42:55 tz Exp $'
   546 ! !
   546 ! !