Package com.google.buzz.model

Examples of com.google.buzz.model.BuzzLink


        buzzContent.setType( "text" );

        /**
         * Create the link that is going to be included in the post.
         */
        BuzzLink buzzLink = new BuzzLink();
        buzzLink.setHref( link );
        buzzLink.setRel( "Google Buzz Api" );
        buzzLink.setType( BuzzLink.Type.TEXT );

        /**
         * Execute API method to post an entry with a link.
         */
        BuzzFeedEntry entry = buzz.createPost( userId, buzzContent, buzzLink );
View Full Code Here


     * @param parentHandler handler
     */
    public LinkHandler( BaseHandler aParent )
    {
        super( aParent );
        link = new BuzzLink();
    }
View Full Code Here

TOP

Related Classes of com.google.buzz.model.BuzzLink

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.