1 17 18 package org.objectweb.jac.core.rtti; 19 20 import java.io.Serializable ; 21 import java.util.HashSet ; 22 import java.util.Set ; 23 24 25 public class MethodInfo implements Serializable { 26 public Set accessedFields = new HashSet (); 27 public String returnedField; 28 public boolean isGetter = true; 29 public Set modifiedFields = new HashSet (); 30 public Set setFields = new HashSet (); 31 public Set addedCollections = new HashSet (); 32 public Set removedCollections = new HashSet (); 33 public Set modifiedCollections = new HashSet (); 34 public int collectionIndexArgument = -1; 35 public int collectionItemArgument = -1; 36 public Set invokedMethods = new HashSet (); 37 public boolean callSuper = false; 38 } 39 | Popular Tags |