Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 982649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:43:54+00:00 2026-05-16T04:43:54+00:00

In another post ( Scala, Maven, and preprocessors ) I asked about preprocessing Java

  • 0

In another post (Scala, Maven, and preprocessors) I asked about preprocessing Java and Scala using a tool like m4. I need to add __FILE__ and __LINE__ capabilities (please, no “use cases” questions). Someone suggested checking out Java compiler plugins (javax.annotation.processing.Processor).

How would one go about doing this using special annotations (@File, @Line, or @FileLine maybe)? Any examples similar to this would be greatly appreciated.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T04:43:54+00:00Added an answer on May 16, 2026 at 4:43 am

    In a comment on your previous question you mentioned http://www.gallot.be/?p=85, which uses a javaagent. It should be relatively easy to modify that code to run the same transformation in a preprocessing step. You would need to extract the CodeLocationClassAdapter into its own toplevel class and call it like this for each of your class files:

    String name = "com/stackoverflow/Test.class";
    byte[] bytes = // read bytes of the classfile from disk
    
    ClassReader cr = new ClassReader(bytes);
    ClassWriter cw = new ClassWriter(cr, 0);
    ClassVisitor cv = new CodeLocationClassAdapter(cw);
    
    cr.accept(cv, 0);
    
    // write modified class file
    OutputStream out = new FileOutputStream(name);
    out.write(cw.toByteArray());
    out.close();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I asked this question in another post - How do I put a <div>
I using curl to post data to another server, between each posting I use
Another post describes how to access a codebehind variable in XAML. However, I'd like
There is another post here about Atan but I dont see any relevant answers:
I saw another post suggesting using this statement to trim string variables contained in
I got this RegEx from another post, but it doesn't fully function like it
I recently came across this blog post Yet another post about gamma correction which
I made another post earlier about this subject but I've since changed my code
David Aitken's blog post and another post I cannot find anymore talk about PowerShell
I sort of asked this question at the end of another post but feel

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.