Skip to content

Commit

Permalink
added a missing class
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenArzt committed Sep 23, 2024
1 parent 9ef80fd commit 84a858d
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/main/java/soot/ISootClassAddedListener.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package soot;

/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 2002 Ondrej Lhotak
* %%
* This program 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 program 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 General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
* #L%
*/

/**
* Interface to notify client code that a new class has been added to the scene
*
* @author Steven Arzt
*
*/
public interface ISootClassAddedListener {

/**
* Callback that is invoked when a SootClass has been added to the scene
*
* @param sc
* The SootClass that as been added
*/
public void onSootClassAdded(SootClass sc);

}

0 comments on commit 84a858d

Please sign in to comment.