smalltalk
/
osmo-st-asn1
Archived
1
0
Fork 0

misc: Make all classes carry a proper category

This commit is contained in:
Holger Hans Peter Freyther 2011-09-27 16:54:38 +02:00
parent 0c4edb83a2
commit 59f3d7ac47
1 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,7 @@
Object subclass: BERTag [
| classType tagValue constructed |
<category: 'osmo-asn1'>
<category: 'OsmoASN1'>
<comment: 'I am a TAG as of X.690'>
BERTag class >> classUniversal [
@ -192,7 +192,7 @@ Object subclass: BERTag [
]
Object subclass: BERLength [
<category: 'osmo-asn1'>
<category: 'OsmoASN1'>
<comment: 'I can handle the length for definite and indefinite length. I wonder
of myself if I should be class or instance based or even be a SmallInteger or an
extension to a SmallInteger. Should I have a method called isIndefinite. Time will tell.'>
@ -233,7 +233,7 @@ extension to a SmallInteger. Should I have a method called isIndefinite. Time wi
Object subclass: BERTLVStream [
| base |
<category: 'osmo-asn1'>
<category: 'OsmoASN1'>
<comment: 'I am a Tag Value Length (TLV) Stream for Basic Encoding Rules (BER)
of X.690 and provide very basic reading of a stream.'>
@ -292,6 +292,7 @@ of X.690 and provide very basic reading of a stream.'>
]
BERTLVStream subclass: DERTLVStream [
<category: 'OsmoASN1'>
<comment: 'I am DER Stream. I can produce valid DER streams
from a tupled input.'>