What is the equivalent of Cocoa's NSRange struct on Android (Java)? -


what equivalent of cocoa's nsrange struct on android?

typedef struct _nsrange {     nsuinteger location;     nsuinteger length; } nsrange; 

i'm trying find java class cannot find anything.

you can use java class :

class javansrange {     public integer location;     public integer length; } 

nsinteger ==> integer


Comments

Popular posts from this blog

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -