Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Java AST and I try to find a variable inside it via XPath.

Lets say the variable is called 'foobar' I could use

//VariableDeclarator/VariableDeclaratorId[@Image='foobar']

but what if I dont know the text 'foobar', but want to read it from another element

//VariableDeclarator/VariableDeclaratorId[@Image=//SynchronizedStatement/Expression/PrimaryExpression/PrimaryPrefix/Name]

the 'Name' node has the information 'foobar' in @Image, but PrimaryPrefix/Name[@Image] does not work.

How must I rewrite the condition //SynchronizedStatement/Expression/PrimaryExpression/PrimaryPrefix/Name that it is the same as @Image='foobar' ?

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

Try this XPath:-

//VariableDeclarator/VariableDeclaratorId[@Image=//SynchronizedStatement/Expression/PrimaryExpression/PrimaryPrefix/Name/@Image]
share|improve this answer
thanks... awesome :) – martymcfly Mar 25 '10 at 9:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.