The number of items in the roundtrip adapter is simply limited by a check in the subscribe method of the RoundTripDataAdapter class
see
https://github.com/Weswit/Lightstreamer-example-RoundTrip-adapter-java/blob/master/src/src_roundtrip/roundtrip_demo/adapters/RoundTripDataAdapter.java#L115
[SYNTAX=JAVA]if (!item.matches("^roundtrip[01234]$")) { //valid items are in the range rountrip0 - roundtrip4
throw new SubscriptionException("No such item");
}[/SYNTAX]
Releasing that check should be enough to increase the number of items. The check is made using a regular expression (see
http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html )