Package alt.jiapi.instrumentor

Source Code of alt.jiapi.instrumentor.AddInterfaceInstrumentor

/*
* Copyright (C) 2001 Mika Riekkinen, Joni Suominen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

package alt.jiapi.instrumentor;

import alt.jiapi.reflect.JiapiClass;
import alt.jiapi.reflect.InstructionList;

/**
* An instrumentor which adds an interface to a class which contains
* the current InstructionList.
*
* @author Mika Riekkinen
* @author Joni Suominen
* @version $Revision: 1.4 $ $Date: 2004/03/15 14:47:53 $
*/
public class AddInterfaceInstrumentor extends AbstractInstrumentor {
    private String[] interfaceNames;

    public AddInterfaceInstrumentor(String interfaceName) {
        this(new String[] {interfaceName});
    }

    public AddInterfaceInstrumentor(String[] interfaceNames) {
        this.interfaceNames = interfaceNames;
    }

    public void instrument(InstructionList il) {
        JiapiClass clazz = getCurrentClass();

        for (int i = 0; i < interfaceNames.length; i++) {
            clazz.addInterface(interfaceNames[i]);
        }

        forward(il);
    }
}
TOP

Related Classes of alt.jiapi.instrumentor.AddInterfaceInstrumentor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.