|
|
|
|
|
|
|
*/ |
|
/* |
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
|
* contributor license agreements. See the NOTICE file distributed with |
|
* this work for additional information regarding copyright ownership. |
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
|
* (the "License"); you may not use this file except in compliance with |
|
* the License. You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
|
|
package com.sun.org.apache.bcel.internal.generic; |
|
|
|
import com.sun.org.apache.bcel.internal.Const; |
|
import com.sun.org.apache.bcel.internal.classfile.ConstantCP; |
|
import com.sun.org.apache.bcel.internal.classfile.ConstantNameAndType; |
|
import com.sun.org.apache.bcel.internal.classfile.ConstantPool; |
|
import com.sun.org.apache.bcel.internal.classfile.ConstantUtf8; |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public abstract class FieldOrMethod extends CPInstruction implements LoadClass { |
|
|
|
|
|
|
|
|
|
*/ |
|
FieldOrMethod() { |
|
// no init |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
protected FieldOrMethod(final short opcode, final int index) { |
|
super(opcode, index); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public String getSignature(final ConstantPoolGen cpg) { |
|
final ConstantPool cp = cpg.getConstantPool(); |
|
final ConstantCP cmr = (ConstantCP) cp.getConstant(super.getIndex()); |
|
final ConstantNameAndType cnat = (ConstantNameAndType) cp.getConstant(cmr.getNameAndTypeIndex()); |
|
return ((ConstantUtf8) cp.getConstant(cnat.getSignatureIndex())).getBytes(); |
|
} |
|
|
|
|
|
|
|
*/ |
|
public String getName(final ConstantPoolGen cpg) { |
|
final ConstantPool cp = cpg.getConstantPool(); |
|
final ConstantCP cmr = (ConstantCP) cp.getConstant(super.getIndex()); |
|
final ConstantNameAndType cnat = (ConstantNameAndType) cp.getConstant(cmr.getNameAndTypeIndex()); |
|
return ((ConstantUtf8) cp.getConstant(cnat.getNameIndex())).getBytes(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Deprecated |
|
public String getClassName(final ConstantPoolGen cpg) { |
|
final ConstantPool cp = cpg.getConstantPool(); |
|
final ConstantCP cmr = (ConstantCP) cp.getConstant(super.getIndex()); |
|
final String className = cp.getConstantString(cmr.getClassIndex(), Const.CONSTANT_Class); |
|
if (className.startsWith("[")) { |
|
|
|
return "java.lang.Object"; |
|
} |
|
return className.replace('/', '.'); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Deprecated |
|
public ObjectType getClassType(final ConstantPoolGen cpg) { |
|
return ObjectType.getInstance(getClassName(cpg)); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public ReferenceType getReferenceType(final ConstantPoolGen cpg) { |
|
final ConstantPool cp = cpg.getConstantPool(); |
|
final ConstantCP cmr = (ConstantCP) cp.getConstant(super.getIndex()); |
|
String className = cp.getConstantString(cmr.getClassIndex(), Const.CONSTANT_Class); |
|
if (className.startsWith("[")) { |
|
return (ArrayType) Type.getType(className); |
|
} |
|
className = className.replace('/', '.'); |
|
return ObjectType.getInstance(className); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
@Override |
|
public ObjectType getLoadClassType(final ConstantPoolGen cpg) { |
|
final ReferenceType rt = getReferenceType(cpg); |
|
if (rt instanceof ObjectType) { |
|
return (ObjectType) rt; |
|
} |
|
throw new ClassGenException(rt.getClass().getCanonicalName() + " " + |
|
rt.getSignature() + " does not represent an ObjectType"); |
|
} |
|
} |