Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ITS - Intelligent Transport Systems
ITS
Commits
e08f118d
Commit
e08f118d
authored
Jun 03, 2014
by
garciay
Browse files
Merge STF455 staff
parent
bb81ca2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
javasrc/codec/org/etsi/ttcn/codec/CodecFactory.java
View file @
e08f118d
...
...
@@ -59,9 +59,14 @@ public class CodecFactory {
// initialize additional codec plugins
org
.
etsi
.
ttcn
.
codec
.
its
.
adapter
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
uppertester
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
configtester
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
geonetworking
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
btp
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
fntp
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
fsap
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
iicp
.
Plugin
.
init
();
org
.
etsi
.
ttcn
.
codec
.
its
.
atsp
.
Plugin
.
init
();
}
}
...
...
javasrc/codec/org/etsi/ttcn/codec/MainCodec.java
View file @
e08f118d
...
...
@@ -8,15 +8,15 @@ package org.etsi.ttcn.codec;
import
java.util.Map
;
import
java.util.TreeMap
;
import
org.etsi.
ttcn.tri.TriMessage
;
import
org.etsi.
codec.ITciCDWrapper
;
import
org.etsi.ttcn.tci.TciCDProvided
;
import
org.etsi.ttcn.tci.TciCDRequired
;
import
org.etsi.ttcn.tci.Type
;
import
org.etsi.ttcn.tci.Value
;
import
org.etsi.ttcn.tri.TriMessage
;
public
class
MainCodec
extends
ICodec
{
public
MainCodec
(
TciCD
Required
cdReq
)
{
public
MainCodec
(
I
TciCD
Wrapper
cdReq
)
{
super
(
null
);
this
.
cdReq
=
cdReq
;
}
...
...
@@ -97,11 +97,11 @@ public class MainCodec extends ICodec {
presenceHints
.
put
(
key
,
value
);
}
public
TciCD
Required
getTciCDRequired
()
{
public
I
TciCD
Wrapper
getTciCDRequired
()
{
return
cdReq
;
}
protected
Map
<
String
,
String
>
hints
=
new
TreeMap
<
String
,
String
>();
protected
Map
<
String
,
java
.
lang
.
Boolean
>
presenceHints
=
new
TreeMap
<
String
,
java
.
lang
.
Boolean
>();
protected
TciCD
Required
cdReq
;
protected
I
TciCD
Wrapper
cdReq
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment