aboutsummaryrefslogtreecommitdiffstats
path: root/isup
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-09-27 16:27:34 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-09-27 16:27:34 +0200
commitca50ffe0226e875fbd7deabda3f8583d6ee237ab (patch)
tree8cf25c3563c32341043390132c6faa486f8e56ce /isup
parentd7b2323602771681119bdb0507de3fc58f519aae (diff)
misc: Clean up the categories of the network module
Diffstat (limited to 'isup')
-rw-r--r--isup/create_structs.st8
1 files changed, 8 insertions, 0 deletions
diff --git a/isup/create_structs.st b/isup/create_structs.st
index 7f7df09..aca3f57 100644
--- a/isup/create_structs.st
+++ b/isup/create_structs.st
@@ -190,6 +190,8 @@ Object subclass: StructCreator [
type :=
'MSGFixedField subclass: %1 [
+ <category: ''OsmoNetwork-ISUP''>
+
%1 class >> parameterName [ ^ ''%2'' ]
%1 class >> parameterValue [ ^ ISUPConstants par%3 ]
%1 class >> octalLength [ ^ %4 ]
@@ -213,6 +215,8 @@ Object subclass: StructCreator [
type :=
'MSGVariableField subclass: %1 [
+ <category: ''OsmoNetwork-ISUP''>
+
%1 class >> parameterName [ ^ ''%2'' ]
%1 class >> parameterValue [ ^ ISUPConstants par%3 ]
%1 class >> octalLength [ ^ %4 ]
@@ -228,6 +232,8 @@ Object subclass: StructCreator [
struct isEmpty ifTrue: [
struct add: '
ISUPMessage subclass: ISUP%1 [
+ <category: ''OsmoNetwork-ISUP''>
+
ISUP%1 class >> structure [
^ (self initWith: ISUPConstants msg%1)' % {structName. }.
^ true
@@ -268,6 +274,8 @@ message type.'>
self structs add: '
ISUP%1 subclass: ISUP%2 [
+ <category: ''OsmoNetwork-ISUP''>
+
ISUP%2 class >> structure [
^ (super structure)
type: ISUPConstants msg%2; yourself