Package net.fortytwo.twitlogic

Examples of net.fortytwo.twitlogic.TweetContext


    public void handle(final Tweet tweet) throws HandlerException {
        System.out.println("" + tweet.getUser().getScreenName()
                + " [" + tweet.getId() + "]"
                + ": " + tweet.getText());

        TweetContext tweetContext = new TweetContext() {
            public User thisUser() {
                throw new IllegalStateException("not implemented");
            }

            public Person thisPerson() {
View Full Code Here

TOP

Related Classes of net.fortytwo.twitlogic.TweetContext

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.