All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adrninistrator.javacg.dto.element.variable.FieldElement Maven / Gradle / Ivy

package com.adrninistrator.javacg.dto.element.variable;

import com.adrninistrator.javacg.common.JavaCGConstants;

/**
 * @author adrninistrator
 * @date 2022/10/5
 * @description: 字段
 */
public class FieldElement extends LocalVariableElement {

    // 字段名称
    protected final String fieldName;

    public FieldElement(String type, boolean arrayElement, Object value, String fieldName) {
        super(type, arrayElement, value, JavaCGConstants.LOCAL_VARIABLE_INDEX_NOT_USED);

        this.fieldName = fieldName;
    }

    public FieldElement(String type, boolean arrayElement, Object value, String fieldName, int index) {
        super(type, arrayElement, value, index);

        this.fieldName = fieldName;
    }

    public String getFieldName() {
        return fieldName;
    }

    @Override
    public String toString() {
        return "FieldElement{" +
                "simpleClassName='" + simpleClassName + '\'' +
                ", type='" + getType() + '\'' +
                ", value=" + value +
                ", fieldName='" + fieldName + '\'' +
                '}' + String.format(" (%x)", System.identityHashCode(this));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy