michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: package org.mozilla.gecko.annotationProcessors; michael@0: michael@0: /** michael@0: * Object holding annotation data. Used by GeneratableElementIterator. michael@0: */ michael@0: public class AnnotationInfo { michael@0: public final String wrapperName; michael@0: public final boolean isStatic; michael@0: public final boolean isMultithreaded; michael@0: public final boolean noThrow; michael@0: michael@0: public AnnotationInfo(String aWrapperName, boolean aIsStatic, boolean aIsMultithreaded, michael@0: boolean aNoThrow) { michael@0: wrapperName = aWrapperName; michael@0: isStatic = aIsStatic; michael@0: isMultithreaded = aIsMultithreaded; michael@0: noThrow = aNoThrow; michael@0: } michael@0: }