Home | History | Annotate | Download | only in javassist

Lines Matching defs:oldname

64      * @param oldname   the original class name
67 public void put(CtClass oldname, CtClass newname) {
68 put(oldname.getName(), newname.getName());
79 * <p>If <code>oldname</code> is identical to
82 * <code>oldname</code> to <code>newname</code>. See
85 * @param oldname the original class name.
89 public void put(String oldname, String newname) {
90 if (oldname == newname)
93 String oldname2 = toJvmName(oldname);
102 * if another mapping from <code>oldname</code> is
105 * @param oldname the original class name.
108 public void putIfNone(String oldname, String newname) {
109 if (oldname == newname)
112 String oldname2 = toJvmName(oldname);
118 protected final void put0(Object oldname, Object newname) {
119 super.put(oldname, newname);