blob: 526b282d73e5a5402611e9ce1f448861433043df [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed 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.android.jill.frontend.java;
import org.objectweb.asm.Type;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
/**
* Represents variables that are used by Jill to represent local and stack items.
*/
public class Variable {
@Nonnull
private final Type type;
@Nonnull
private final String id;
@CheckForNull
private final String signature;
@Nonnull
private String name;
private boolean isThis;
private boolean isParameter;
private boolean isSynthetic;
public Variable(@Nonnull String id, @Nonnull String name, @Nonnull Type type,
@CheckForNull String signature) {
this.id = id;
this.name = name;
this.type = type;
this.signature = signature;
isThis = false;
isParameter = false;
isSynthetic = false;
}
@Nonnull
public Type getType() {
return type;
}
public void setName(@Nonnull String name) {
this.name = name;
}
public boolean hasSignature() {
return signature != null;
}
@Nonnull
public String getSignature() {
assert signature != null;
return signature;
}
@Nonnull
public String getName() {
return name;
}
@Nonnull
public String getId() {
return id;
}
public boolean isThis() {
return isThis;
}
public void setThis() {
this.isThis = true;
}
public boolean isParameter() {
return isParameter;
}
public void setParameter() {
this.isParameter = true;
}
public boolean isSynthetic() {
return isSynthetic;
}
public void setSynthetic() {
this.isSynthetic = true;
}
}