6 messages in com.googlegroups.adwords-apiRe: AdWords API Criterion.java bug?
FromSent OnAttachments
mckw22 May 2006 11:39 
arebe22 May 2006 12:04 
bofferboy22 May 2006 21:25 
mckw23 May 2006 00:48 
mckw23 May 2006 00:51 
Patrick Chanezon24 May 2006 11:04 
Subject:Re: AdWords API Criterion.java bug?
From:Patrick Chanezon (chan@gmail.com)
Date:05/24/2006 11:04:41 AM
List:com.googlegroups.adwords-api

You can use the new java client library that I pushed to sourceforge this morning. It supports adwords api v4.

P@

On 5/22/06, mckw <keyw@mercateo.com> wrote:

Hi, as I download api Version V4 (before 4min) the compiler missing an constructure in Criterion.java. If you got an error like : [javac] symbol : constructor Criterion(int,java.lang.String,java.lang.String,java.lang.String,long, java.lang.String,java.lang.Boolean, com.google.api.adwords.v4.CriterionStatus) [javac] location: class com.google.api.adwords.v4.Criterion [javac] super(

add in Criterion.java (com/google/api/adwords/v4/Criterion.java) following code

public Criterion (int adGroupId, java.lang.String criterionType, java.lang.String destinationUrl, java.lang.String exemptionRequest, long id,java.lang.String language, java.lang.Boolean negative, com.google.api.adwords.v4.CriterionStatus status) {

this.id = id; this.adGroupId = adGroupId; this.exemptionRequest = exemptionRequest; this.criterionType = criterionType; this.language = language; this.status = status; this.negative = negative; this.destinationUrl = destinationUrl; }

X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.11.53.63 with SMTP id b63mr132252cwa; Mon, 22 May 2006 11:39:26 -0700 (PDT) X-Google-Token: b3b_igwAAADclc4NMKqlTUTSTc-ojHu6 Received: from 80.64.188.53 by u72g2000cwu.googlegroups.com with HTTP; Mon, 22 May 2006 18:39:25 +0000 (UTC) From: "mckw" <keyw@mercateo.com> To: "AdWords API Forum" <adwo@googlegroups.com> Subject: Criterion.java bug? Date: Mon, 22 May 2006 11:39:25 -0700 Message-ID: <1148@u72g2000cwu.googlegroups.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Opera/8.52 (X11; Linux i686; U; en),gzip(gfe),gzip(gfe) X-HTTP-Via: 1.0 Proxy.mercateo.lan:3128 (squid/2.5.STABLE5) Mime-Version: 1.0 Content-Type: text/plain

Hi, as I download api Version V4 (before 4min) the compiler missing an constructure in Criterion.java. If you got an error like : [javac] symbol : constructor Criterion(int,java.lang.String,java.lang.String,java.lang.String,long, java.lang.String,java.lang.Boolean, com.google.api.adwords.v4.CriterionStatus) [javac] location: class com.google.api.adwords.v4.Criterion [javac] super(

add in Criterion.java (com/google/api/adwords/v4/Criterion.java) following code

public Criterion (int adGroupId, java.lang.String criterionType, java.lang.String destinationUrl, java.lang.String exemptionRequest, long id,java.lang.String language, java.lang.Boolean negative, com.google.api.adwords.v4.CriterionStatus status) {

this.id = id; this.adGroupId = adGroupId; this.exemptionRequest = exemptionRequest; this.criterionType = criterionType; this.language = language; this.status = status; this.negative = negative; this.destinationUrl = destinationUrl; }