Package com.eclipsesource.tabris.interaction

Examples of com.eclipsesource.tabris.interaction.TwitterOptions


    button.setForeground( new Color( display, 255, 255, 255 ) );
    button.setBackground( new Color( display, 0, 121, 184 ) );
    button.addSelectionListener( new SelectionAdapter() {
      @Override
      public void widgetSelected( SelectionEvent e ) {
        TwitterOptions twitterOptions = new TwitterOptions( "Mobile App development with Tabris rocks!" );
        twitterOptions.setUrl( "http://developer.eclipsesource.com/tabris/" );
        appLauncher.open( twitterOptions );
      }
    } );
  }
View Full Code Here


public class PageAction extends AbstractAction {

  @Override
  public void execute() {
    AppLauncher appLauncher = RWT.getClient().getService( AppLauncher.class );
    TwitterOptions twitterOptions = new TwitterOptions( "Just created a Tabris HelloWorld App. Take a look..." );
    twitterOptions.setUrl( "http://developer.eclipsesource.com/tabris" );
    appLauncher.open( twitterOptions );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.interaction.TwitterOptions

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.