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

I was wondering if XText supports hover information for keywords (rules). So far I have only seen examples for instances of those, never for the keyword as such.

To outline here is a small sample of what I have in mind.

/**
 * use: login (username, password) 
 */
Login: 'login' ('('username=STRING ',' password=STRING ')' )?;

In the Editor I would then expect to see "use: login (username, password)" when I hover over "login", the high-lighted keyword. Ideally one could use a Javadoc style of comment, but any other solution is welcome.

Best regards, Sebastian

share|improve this question

1 Answer

Some good options can be found here http://www.eclipse.org/forums/index.php/mv/msg/452862/1008201/#msg_1008201

One of them is explained here http://blogs.itemis.de/stundzig/archives/868

Best regards, Rafael

share|improve this answer

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.