correction on the above code :) my code dump
public AdWordsCampaignSync( String myEmail, String myPassword, String
myToken)
{
String myUseragent = "Toad Processor";
//Initialize campaign service
CampaignServiceService CampaignService = new CampaignServiceService();
CampaignService.useragentValue = new
com.google.adwords.CampaignService.useragent();
CampaignService.useragentValue.Text = new String[] { myUseragent };
CampaignService.emailValue = new
com.google.adwords.CampaignService.email();
CampaignService.emailValue.Text = new String[] { myEmail };
CampaignService.passwordValue = new
com.google.adwords.CampaignService.password();
CampaignService.passwordValue.Text = new String[] { myPassword };
CampaignService.tokenValue = new
com.google.adwords.CampaignService.token();
CampaignService.tokenValue.Text = new String[] { myToken };
this should probably almost work in java (seems that C# and java are
look alikes)