# HG changeset patch # User cg # Date 912869946 0 # Node ID a010f99aa6f6e54a80ac927216a1aeff7e687bfd # Parent 572b51e5f02cd279e89f0363d96d132abfd4b8a7 *** empty log message *** diff -r 572b51e5f02c -r a010f99aa6f6 JavaDecompiler.st --- a/JavaDecompiler.st Sat Dec 05 14:55:54 1998 +0000 +++ b/JavaDecompiler.st Sat Dec 05 14:59:06 1998 +0000 @@ -488,6 +488,9 @@ aField isFinal ifTrue:[ s nextPutAll:'final '. ]. + aField isVolatile ifTrue:[ + s nextPutAll:'volatile '. + ]. s emphasis:codeStyle. ((type := aField type) startsWith:pckgName) ifTrue:[ @@ -537,6 +540,12 @@ aField isFinal ifTrue:[ s nextPutAll:'final '. ]. + aField isTransient ifTrue:[ + s nextPutAll:'transient '. + ]. + aField isVolatile ifTrue:[ + s nextPutAll:'volatile '. + ]. s emphasis:codeStyle. ((type := aField type) startsWith:pckgName) ifTrue:[ @@ -595,7 +604,7 @@ s nextPutAll:'}'; cr. "Created: / 22.3.1997 / 14:29:37 / cg" - "Modified: / 5.12.1998 / 15:52:31 / cg" + "Modified: / 5.12.1998 / 15:58:37 / cg" ! methodDefinitionOf:m inPackage:pckgName on:s @@ -1192,6 +1201,6 @@ !JavaDecompiler class methodsFor:'documentation'! version - ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaDecompiler.st,v 1.42 1998/12/05 14:55:54 cg Exp $' + ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaDecompiler.st,v 1.43 1998/12/05 14:59:06 cg Exp $' ! ! JavaDecompiler initialize!