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
b0fdf61d
Commit
b0fdf61d
authored
Jul 26, 2016
by
garciay
Browse files
Remove useless files
parent
01097524
Changes
1
Hide whitespace changes
Inline
Side-by-side
javasrc/tool/org/etsi/its/tool/elvior/LibItsMapSpat_asn1.java
deleted
100644 → 0
View file @
01097524
package
org.etsi.its.tool.elvior
;
import
org.etsi.ttcn.tci.Type
;
import
org.etsi.ttcn.tci.Value
;
import
org.etsi.ttcn.tri.TriMessage
;
/**
*
* Note that "Enable Internal Codec" field shall be set to true
*
*/
public
class
LibItsMapSpat_asn1
extends
LibIts_asn1
{
/**
* Constructor
*/
public
LibItsMapSpat_asn1
()
{
_logger
.
entering
(
"LibItsMapSpat_asn1"
,
"LibItsMapSpat_asn1"
);
_encodingName
=
"MAP_SPAT_ETSI"
;
}
@Override
public
Value
decode
(
final
TriMessage
message
,
final
Type
decodingHypothesis
)
{
_logger
.
entering
(
"LibItsMapSpat_asn1"
,
"decode"
,
decodingHypothesis
.
getName
());
if
(
decodingHypothesis
.
getName
().
endsWith
(
"msgMap"
))
{
Type
type
=
getTypeForName
(
"MAP_SPAT_ETSI.MAP_PDU"
);
return
super
.
decode
(
message
,
type
);
}
else
if
(
decodingHypothesis
.
getName
().
endsWith
(
"msgSpat"
))
{
Type
type
=
getTypeForName
(
"MAP_SPAT_ETSI.SPAT_PDU"
);
return
super
.
decode
(
message
,
type
);
}
return
super
.
decode
(
message
,
decodingHypothesis
);
}
}
// End of class LibItsMapSpat_asn1
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