Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2009 Google Inc.
*
* 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.google.gwt.dev.javac.asm;
import com.google.gwt.dev.javac.asm.CollectClassData.AnnotationEnum;
import com.google.gwt.dev.util.StringInterner;
import org.objectweb.asm.AnnotationVisitor;
import org.objectweb.asm.Opcodes;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Collects data from (possibly nested) annotations on a single entity.
*/
public class CollectAnnotationData extends AnnotationVisitor {
/**
* Holds annotation fields/values.
*/
public static class AnnotationData {
private final String desc;
private final Map values = new HashMap();
private final boolean visible;
protected AnnotationData(String desc, boolean visible) {
this.desc = StringInterner.get().intern(desc);
this.visible = visible;
}
public void addValue(String name, Object value) {
values.put(StringInterner.get().intern(name), value);
}
/**
* @return the desc
*/
public String getDesc() {
return desc;
}
/**
* @return the values
*/
public Map getValues() {
return values;
}
/**
* @return the visible
*/
public boolean isVisible() {
return visible;
}
}
/**
* Collects data inside an array-valued annotation parameter.
*/
public static class MyAnnotationArrayVisitor extends AnnotationVisitor {
private final Callback