Browse Source

added getSize()


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@191 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 19 years ago
parent
commit
6dc6b9945e
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      src/main/javassist/bytecode/ConstPool.java

+ 7
- 0
src/main/javassist/bytecode/ConstPool.java View File

strings = new HashMap(); strings = new HashMap();
} }


/**
* Returns the number of entries in this table.
*/
public int getSize() {
return numOfItems;
}

/** /**
* Returns the name of the class using this constant pool table. * Returns the name of the class using this constant pool table.
*/ */

Loading…
Cancel
Save