
com.newrelic.agent.util.asm.AnnotationDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-agent Show documentation
Show all versions of newrelic-agent Show documentation
Jar required to run with a java application to monitor performance.
The newest version!
/*
*
* * Copyright 2020 New Relic Corporation. All rights reserved.
* * SPDX-License-Identifier: Apache-2.0
*
*/
package com.newrelic.agent.util.asm;
import com.google.common.collect.ListMultimap;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;
import com.newrelic.weave.utils.WeaveUtils;
import org.objectweb.asm.AnnotationVisitor;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Objects;
/**
* The details for a class or method annotation.
*/
public class AnnotationDetails extends AnnotationVisitor {
final String desc;
private ListMultimap attributes;
public AnnotationDetails(AnnotationVisitor av, String desc) {
super(WeaveUtils.ASM_API_LEVEL, av);
this.desc = desc;
}
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy