Package er.ajax.example

Examples of er.ajax.example.Word


     * in allValues that contain this value.
     */
    public NSArray currentValues(String v) {
        NSMutableArray<Word> result = new NSMutableArray<Word>();
        for(Enumeration e = allValues.objectEnumerator(); e.hasMoreElements() && result.count() < 10;) {
          Word c = (Word) e.nextElement();
            if(v == null || c.name.toLowerCase().indexOf(v.toLowerCase()) >= 0) {
                result.addObject(c);
            }
        }
        return result;
View Full Code Here

TOP

Related Classes of er.ajax.example.Word

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.