Ejemplo n.º 1
0
 public FSTMethod[] getPackagePrivateMethods() {
   FSTMethod[] methodArray = new FSTMethod[getPrivateMethodCount()];
   int i = 0;
   for (FSTMethod meth : methods.values()) {
     if (!meth.isPrivate() && !meth.isProtected() && !meth.isPublic()) methodArray[i++] = meth;
   }
   return methodArray;
 }
Ejemplo n.º 2
0
 public FSTMethod[] getProtectedMethods() {
   FSTMethod[] methodArray = new FSTMethod[getProtectedMethodCount()];
   int i = 0;
   for (FSTMethod meth : methods.values()) {
     if (meth.isProtected()) methodArray[i++] = meth;
   }
   return methodArray;
 }
Ejemplo n.º 3
0
 public int getPackagePrivateMethodCount() {
   int i = 0;
   for (FSTMethod meth : methods.values())
     if (!meth.isPrivate() && !meth.isProtected() && !meth.isPublic()) i++;
   return i;
 }
Ejemplo n.º 4
0
 public int getProtectedMethodCount() {
   int i = 0;
   for (FSTMethod meth : methods.values()) if (meth.isProtected()) i++;
   return i;
 }