Package net.rim.blackberry.api.invoke

Examples of net.rim.blackberry.api.invoke.SearchArguments


        Invoke.invokeApplication( Invoke.APP_TYPE_PHONE, args );
    }

    private void invokeSearch( final Object arg ) throws Exception {
        SearchArguments args = null;

        if( arg instanceof SearchArgumentsObject ) {
            final SearchArgumentsObject s = (SearchArgumentsObject) arg;
            args = new SearchArguments( s.getText(), s.getName() );
        } else {
            args = new SearchArguments();
        }

        Invoke.invokeApplication( Invoke.APP_TYPE_SEARCH, args );
    }
View Full Code Here

TOP

Related Classes of net.rim.blackberry.api.invoke.SearchArguments

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.