congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Clazz.isAnnotation
Code IndexAdd Tabnine to your IDE (free)

How to use
isAnnotation
method
in
aQute.bnd.osgi.Clazz

Best Java code snippets using aQute.bnd.osgi.Clazz.isAnnotation (Showing top 20 results out of 315)

origin: biz.aQute.bnd/biz.aQute.bndlib

@Override
public boolean classStart(Clazz c) {
  //
  // Parse any annotated classes except annotations
  //
  if (!c.isAnnotation() && c.annotations != null) {
    current = c;
    return true;
  }
  current = null;
  return false;
}
origin: biz.aQute.bnd/biz.aQute.bnd

@Override
public boolean classStart(Clazz c) {
  //
  // Parse any annotated classes except annotations
  //
  if (!c.isAnnotation() && c.annotations != null) {
    current = c;
    return true;
  }
  current = null;
  return false;
}
origin: biz.aQute.bnd/bndlib

if (!c.isAnnotation()) {
  if (c.annotations != null)
origin: biz.aQute.bnd/bnd

if (!c.isAnnotation()) {
  if (c.annotations != null)
origin: biz.aQute.bnd/biz.aQute.bndlib

@Override
public void method(MethodDef defined) {
  if (defined.isStatic()) {
    current = null;
    return;
  }
  current = new ADDef(finder);
  methods.put(defined, current);
  if (clazz.isAnnotation()) {
    if (defined.getName()
      .equals("value")) {
      hasValue = true;
    } else {
      hasNoDefault++;
    }
  }
}
origin: biz.aQute.bnd/biz.aQute.bnd

@Override
public void method(MethodDef defined) {
  if (defined.isStatic()) {
    current = null;
    return;
  }
  current = new ADDef(finder);
  methods.put(defined, current);
  if (clazz.isAnnotation()) {
    if (defined.getName()
      .equals("value")) {
      hasValue = true;
    } else {
      hasNoDefault++;
    }
  }
}
origin: apache/felix

try {
  Clazz clazz = m_analyzer.findClass(typeRef);
  if (! clazz.isAnnotation() && ! clazz.isInterface()) {
    m_logger.debug("ignoring updated callback signature %s (argument type not an interface or an annotation", callbackDescriptor);
    continue;
origin: biz.aQute.bnd/biz.aQute.bndlib

try {
  Clazz r = analyzer.findClass(type);
  if (r.isAnnotation()) {
    analyzer.warning("Nested annotation type found in field %s, %s", defined.getName(),
      type.getFQN());
origin: biz.aQute.bnd/biz.aQute.bnd

try {
  Clazz r = analyzer.findClass(type);
  if (r.isAnnotation()) {
    analyzer.warning("Nested annotation type found in field %s, %s", defined.getName(),
      type.getFQN());
origin: biz.aQute.bnd/bnd

try {
  Clazz r = analyzer.findClass(type);
  if (r.isAnnotation()) {
    analyzer.warning("Nested annotation type found in field % s, %s", defined.getName(), type.getFQN());
    return;
origin: biz.aQute.bnd/bndlib

try {
  Clazz r = analyzer.findClass(type);
  if (r.isAnnotation()) {
    analyzer.warning("Nested annotation type found in field % s, %s", defined.getName(), type.getFQN());
    return;
origin: biz.aQute.bnd/biz.aQute.bndlib

private List<BeanDef> getDefs() throws Exception {
  if (clazz.isEnum() || clazz.isInterface() || clazz.isAnnotation()) {
origin: biz.aQute.bnd/biz.aQute.bnd

private List<BeanDef> getDefs() throws Exception {
  if (clazz.isEnum() || clazz.isInterface() || clazz.isAnnotation()) {
origin: biz.aQute.bnd/biz.aQute.bndlib

try {
  Clazz clazz = analyzer.findClass(typeRef);
  if (clazz.isAnnotation()) {
    component.updateVersion(V1_3);
    clazz.parseClassFileWithCollector(
origin: apache/felix

try {
  Clazz r = m_analyzer.findClass(type);
  if (r.isAnnotation()) {
    m_logger.warn("Nested annotation type found in member %s, %s",
        defined.getName(), type.getFQN());
origin: biz.aQute.bnd/biz.aQute.bnd

try {
  Clazz clazz = analyzer.findClass(typeRef);
  if (clazz.isAnnotation()) {
    component.updateVersion(V1_3);
    clazz.parseClassFileWithCollector(
origin: biz.aQute.bnd/biz.aQute.bndlib

try {
  Clazz r = analyzer.findClass(type);
  if (r.isAnnotation()) {
    analyzer
      .warning("Nested annotation type found in member %s, %s", name,
origin: biz.aQute.bnd/biz.aQute.bnd

try {
  Clazz r = analyzer.findClass(type);
  if (r.isAnnotation()) {
    analyzer
      .warning("Nested annotation type found in member %s, %s", name,
origin: biz.aQute.bnd/biz.aQute.bndlib

private ComponentDef getDef() throws Exception {
  if (clazz.isEnum() || clazz.isInterface() || clazz.isAnnotation()) {
origin: biz.aQute.bnd/biz.aQute.bnd

private ComponentDef getDef() throws Exception {
  if (clazz.isEnum() || clazz.isInterface() || clazz.isAnnotation()) {
aQute.bnd.osgiClazzisAnnotation

Popular methods of Clazz

  • <init>
  • parseClassFileWithCollector
  • getClassName
  • getFQN
  • getReferred
  • is
  • isInterface
  • crawl
    We must find Class.forName references ...
  • doAnnotation
  • doAnnotations
  • doAttribute
    Process a single attribute, if not recognized, skip it.
  • doAttributes
    Called for each attribute in the class, field, or method.
  • doAttribute,
  • doAttributes,
  • doCode,
  • doConstantValue,
  • doElementValue,
  • doEnclosingMethod,
  • doExceptions,
  • doInnerClasses,
  • doParameterAnnotations

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • getContentResolver (Context)
  • findViewById (Activity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Permission (java.security)
    Legacy security code; do not use.
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now