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

html - Cut text on left side inside button while centering -

plugins - CodeIgniter support on netbeans 8.0 -

php - Selecting items from MySQL for a status update feed efficiently while accounting for possible spam -