soot.util.annotations.AnnotationElemSwitch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
package soot.util.annotations;
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 1997 - 2018 Raja Vallée-Rai and others
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import soot.tagkit.AbstractAnnotationElemTypeSwitch;
import soot.tagkit.AnnotationAnnotationElem;
import soot.tagkit.AnnotationArrayElem;
import soot.tagkit.AnnotationBooleanElem;
import soot.tagkit.AnnotationClassElem;
import soot.tagkit.AnnotationDoubleElem;
import soot.tagkit.AnnotationElem;
import soot.tagkit.AnnotationEnumElem;
import soot.tagkit.AnnotationFloatElem;
import soot.tagkit.AnnotationIntElem;
import soot.tagkit.AnnotationLongElem;
import soot.tagkit.AnnotationStringElem;
/**
*
* An {@link AbstractAnnotationElemTypeSwitch} that converts an {@link AnnotationElem} to a mapping of element name and the
* actual result.
*
* @author Florian Kuebler
*
*/
public class AnnotationElemSwitch extends AbstractAnnotationElemTypeSwitch {
/**
*
* A helper class to map method name and result.
*
* @author Florian Kuebler
*
* @param
* the result type.
*/
public class AnnotationElemResult {
private String name;
private V value;
public AnnotationElemResult(String name, V value) {
this.name = name;
this.value = value;
}
public String getKey() {
return name;
}
public V getValue() {
return value;
}
}
@Override
public void caseAnnotationAnnotationElem(AnnotationAnnotationElem v) {
AnnotationInstanceCreator aic = new AnnotationInstanceCreator();
Object result = aic.create(v.getValue());
setResult(new AnnotationElemResult