Implement DataDecoder::listHasMoreItems

This commit is contained in:
Marco Castelluccio 2014-09-16 15:33:50 -07:00
Родитель aca9c3e09c
Коммит 24dd3e4590
2 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -13,9 +13,7 @@ public class DataDecoder {
public native int getType() throws IOException; public native int getType() throws IOException;
public boolean listHasMoreItems() throws IOException { public native boolean listHasMoreItems() throws IOException;
throw new RuntimeException("DataDecoder::listHasMoreItems() not implemented");
}
public native void getStart(int tag) throws IOException; public native void getStart(int tag) throws IOException;

Просмотреть файл

@ -4,6 +4,7 @@
'use strict'; 'use strict';
var DataType = { var DataType = {
BYTE: 2,
USHORT: 5, USHORT: 5,
ULONG: 7, ULONG: 7,
STRING: 10, STRING: 10,
@ -87,6 +88,10 @@ DataDecoder.prototype.getTag = function() {
return this.data[0].tag; return this.data[0].tag;
} }
DataDecoder.prototype.getType = function() {
return this.data[0].type || -1;
}
Native["com/nokia/mid/s40/codec/DataEncoder.init.()V"] = function(ctx, stack) { Native["com/nokia/mid/s40/codec/DataEncoder.init.()V"] = function(ctx, stack) {
var _this = stack.pop(); var _this = stack.pop();
_this.encoder = new DataEncoder(); _this.encoder = new DataEncoder();
@ -188,3 +193,8 @@ Native["com/nokia/mid/s40/codec/DataDecoder.getType.()I"] = function(ctx, stack)
} }
stack.push(tag); stack.push(tag);
} }
Native["com/nokia/mid/s40/codec/DataDecoder.listHasMoreItems.()Z"] = function(ctx, stack) {
var _this = stack.pop();
stack.push((_this.decoder.getType() != DataEncoder.END) ? 1 : 0);
}