Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/src/org/jetbrains/java/decompiler/struct/consts/PooledConstant.java

104 lines
2.6 KiB

// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.java.decompiler.struct.consts;
11 years ago
import org.jetbrains.java.decompiler.code.CodeConstants;
11 years ago
import java.io.DataOutputStream;
import java.io.IOException;
/*
cp_info {
u1 tag;
u1 info[];
}
11 years ago
*/
public class PooledConstant implements CodeConstants, VariableTypeEnum {
// *****************************************************************************
// public fields
// *****************************************************************************
public int type;
public boolean own = false;
public int returnType;
// *****************************************************************************
// private fields
// *****************************************************************************
private Object[] values;
// *****************************************************************************
// constructors
// *****************************************************************************
public PooledConstant() {
}
public PooledConstant(int type, Object[] values) {
this.type = type;
this.values = values;
this.returnType = poolTypeToIntern(type);
}
public PooledConstant(int type, boolean own, Object[] values) {
this.type = type;
this.own = own;
this.values = values;
this.returnType = poolTypeToIntern(type);
}
// *****************************************************************************
// public methods
// *****************************************************************************
public void resolveConstant(ConstantPool pool) {
// to be overwritten
}
public void writeToStream(DataOutputStream out) throws IOException {
// to be overwritten
}
public int poolTypeToIntern(int type) {
switch (type) {
case CONSTANT_Integer:
return INT;
case CONSTANT_Float:
return FLOAT;
case CONSTANT_Long:
return LONG;
case CONSTANT_Double:
return DOUBLE;
case CONSTANT_String:
case CONSTANT_Class: // 1.5 -> ldc class
return REFERENCE;
default:
throw new RuntimeException("Huh?? What are you trying to load?");
}
}
public Object getValue(int index) {
return values[index];
}
// *****************************************************************************
// getter and setter methods
// *****************************************************************************
public Object[] getValues() {
return values;
}
11 years ago
public void setValues(Object[] values) {
this.values = values;
}
11 years ago
}