/* * This file is part of Mixin, licensed under the MIT License (MIT). * * Copyright (c) SpongePowered * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.spongepowered.asm.mixin.struct; import org.objectweb.asm.tree.AnnotationNode; import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.MethodNode; import org.spongepowered.asm.mixin.transformer.ClassInfo; import org.spongepowered.asm.mixin.transformer.MixinTargetContext; /** * Information about a special mixin method such as an injector or accessor */ public class SpecialMethodInfo extends AnnotatedMethodInfo { /** * Target class node */ protected final ClassNode classNode; /** * Mixin data */ protected final MixinTargetContext mixin; public SpecialMethodInfo(MixinTargetContext mixin, MethodNode method, AnnotationNode annotation) { super(mixin, method, annotation); this.mixin = mixin; this.classNode = mixin.getTargetClassNode(); } /** * Get the class node for this injection * * @return the class containing the injector and the target * @deprecated use getTargetClassNode instead */ @Deprecated public final ClassNode getClassNode() { return this.classNode; } /** * Get the target class node for this injection * * @return the class containing the injector and the target */ public final ClassNode getTargetClassNode() { return this.classNode; } /** * Get the class metadata for the target class */ public final ClassInfo getTargetClassInfo() { return this.mixin.getTargetClassInfo(); } /** * Get the class metadata for the mixin */ public final ClassInfo getClassInfo() { return this.mixin.getClassInfo(); } /** * Get the original name of the method, if available */ @Override public String getMethodName() { return this.methodName; } }