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
bb81ca2e
Commit
bb81ca2e
authored
Jun 03, 2014
by
garciay
Browse files
Merge STF455 staff
parent
e40d126d
Changes
1
Hide whitespace changes
Inline
Side-by-side
javasrc/codec/org/etsi/codec/ITciCDWrapper.java
View file @
bb81ca2e
...
...
@@ -27,7 +27,31 @@ public interface ITciCDWrapper {
* See ETSI ES 201 873-6 V4.2.1 - 7.3.2.1.2 getInteger
* @return An instance of Type representing a TTCN-3 integer type
*/
public
IntegerValue
getInteger
();
public
IntegerValue
setInteger
(
final
Integer
value
);
/**
* Constructs and returns a basic TTCN-3 big integer type
*
* @see ETSI ES 201 873-6 V4.2.1 - 7.3.2.1.2 getInteger
* @return An instance of Type representing a TTCN-3 integer type
*/
public
IntegerValue
setInteger
(
final
BigInteger
value
);
/**
* Constructs and returns a basic integer type
*
* See ETSI ES 201 873-6 V4.2.1 - 7.3.2.1.2 getInteger
* @return An instance of Type representing a TTCN-3 integer type
*/
public
int
getInteger
(
final
IntegerValue
iv
);
/**
* Constructs and returns a basic big integer type
*
* @see ETSI ES 201 873-6 V4.2.1 - 7.3.2.1.2 getInteger
* @return An instance of Type representing a TTCN-3 integer type
*/
public
long
/*TODO BigInteger*/
getBigInteger
(
final
IntegerValue
iv
);
/**
* Constructs and returns a basic TTCN-3 octet string type
...
...
@@ -44,14 +68,6 @@ public interface ITciCDWrapper {
* @return An instance of Type representing a TTCN-3 float type
*/
public
FloatValue
getFloat
();
/**
* Constructs and returns a basic TTCN-3 big integer type
*
* @see ETSI ES 201 873-6 V4.2.1 - 7.3.2.1.2 getInteger
* @return An instance of Type representing a TTCN-3 integer type
*/
IntegerValue
getBigInteger
(
BigInteger
bigInt
);
/**
* Constructs and returns a basic TTCN-3 float type
...
...
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