Guest User

Untitled

a guest
May 4th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package com.rs.generic;
  2.  
  3. import java.util.HashMap;
  4.  
  5. import org.apache.bcel.generic.ClassGen;
  6.  
  7. public abstract class AbstractTransform {
  8.  
  9. private HashMap<String, ClassGen> myClasses = new HashMap<String, ClassGen>();
  10.  
  11. public AbstractTransform(HashMap<String, ClassGen> myClasses) {
  12. this.myClasses = myClasses;
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment