Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Logic to override method to deleagte method in super class #674

Closed
minwoo-jung opened this issue Jun 26, 2015 · 0 comments
Closed

Add Logic to override method to deleagte method in super class #674

minwoo-jung opened this issue Jun 26, 2015 · 0 comments
Assignees
Milestone

Comments

@minwoo-jung
Copy link
Member

Suppose we have declared class A , B.

class B extends A {
}

class A {
{
   public String echo(String message) {
         return message;
    }
}

When you want to profile echo method called by A Class Pinpoint provide creating API to delegate super method in super class.

after modified


class B extends A {
   public String echo(String message) {
         return super.echo(message);
    }
}
@minwoo-jung minwoo-jung added this to the 1.5.0 milestone Jun 29, 2015
@minwoo-jung minwoo-jung self-assigned this Jun 29, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jun 30, 2015
@minwoo-jung minwoo-jung changed the title Add Logic to generate delegator method in JavaAssistClass Add Logic to override method to deleagte method in super class Jun 30, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jul 8, 2015
minwoo-jung added a commit to minwoo-jung/pinpoint that referenced this issue Jul 8, 2015
minwoo-jung added a commit that referenced this issue Jul 8, 2015
[#674] add logic to assert logic, improve logic
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

1 participant