2013-09-09 05:57:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
package org.mozilla.gecko.annotationProcessors;
|
|
|
|
|
|
|
|
/**
|
2013-11-21 12:41:28 -08:00
|
|
|
* Object holding annotation data. Used by GeneratableElementIterator.
|
2013-09-09 05:57:37 -07:00
|
|
|
*/
|
2013-11-21 12:41:28 -08:00
|
|
|
public class AnnotationInfo {
|
2013-09-09 05:57:37 -07:00
|
|
|
public final String wrapperName;
|
|
|
|
public final boolean isStatic;
|
|
|
|
public final boolean isMultithreaded;
|
|
|
|
|
2013-11-21 12:41:28 -08:00
|
|
|
public AnnotationInfo(String aWrapperName, boolean aIsStatic, boolean aIsMultithreaded) {
|
2013-09-09 05:57:37 -07:00
|
|
|
wrapperName = aWrapperName;
|
|
|
|
isStatic = aIsStatic;
|
|
|
|
isMultithreaded = aIsMultithreaded;
|
|
|
|
}
|
|
|
|
}
|