congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Clazz.getSuper
Code IndexAdd Tabnine to your IDE (free)

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

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

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

private void handleInheritedClasses(Clazz child) throws Exception {
  TypeRef[] ifaces = child.getInterfaces();
  if (ifaces != null) {
    for (TypeRef ref : ifaces) {
      parseAndMergeInheritedMetadata(ref, child);
    }
  }
  TypeRef superClazz = child.getSuper();
  if (superClazz != null) {
    parseAndMergeInheritedMetadata(superClazz, child);
  }
}
origin: biz.aQute.bnd/biz.aQute.bnd

private void handleInheritedClasses(Clazz child) throws Exception {
  TypeRef[] ifaces = child.getInterfaces();
  if (ifaces != null) {
    for (TypeRef ref : ifaces) {
      parseAndMergeInheritedMetadata(ref, child);
    }
  }
  TypeRef superClazz = child.getSuper();
  if (superClazz != null) {
    parseAndMergeInheritedMetadata(superClazz, child);
  }
}
origin: biz.aQute.bnd/bnd

private void handleInheritedClasses(Clazz child) throws Exception {
  TypeRef[] ifaces = child.getInterfaces();
  if (ifaces != null) {
    for (TypeRef ref : ifaces) {
      parseAndMergeInheritedMetadata(ref, child);
    }
  }
  TypeRef superClazz = child.getSuper();
  if (superClazz != null) {
    parseAndMergeInheritedMetadata(superClazz, child);
  }
}
origin: biz.aQute.bnd/bndlib

private void handleInheritedClasses(Clazz child) throws Exception {
  TypeRef[] ifaces = child.getInterfaces();
  if (ifaces != null) {
    for (TypeRef ref : ifaces) {
      parseAndMergeInheritedMetadata(ref, child);
    }
  }
  TypeRef superClazz = child.getSuper();
  if (superClazz != null) {
    parseAndMergeInheritedMetadata(superClazz, child);
  }
}
origin: biz.aQute.bnd/biz.aQute.bnd

private boolean identifiableCollection(TypeRef type, boolean intface, boolean topLevel) {
  try {
    Clazz clazz = analyzer.findClass(type);
    if (clazz != null && (!topLevel || !clazz.isAbstract())
      && ((intface && clazz.isInterface()) ^ clazz.hasPublicNoArgsConstructor())) {
      TypeRef[] intfs = clazz.getInterfaces();
      if (intfs != null) {
        for (TypeRef intf : intfs) {
          if (COLLECTION.matcher(intf.getFQN())
            .matches() || identifiableCollection(intf, true, false)) {
            return true;
          }
        }
      }
      TypeRef ext = clazz.getSuper();
      return ext != null && identifiableCollection(ext, false, false);
    }
  } catch (Exception e) {
    return false;
  }
  return false;
}
origin: biz.aQute.bnd/biz.aQute.bndlib

private boolean identifiableCollection(TypeRef type, boolean intface, boolean topLevel) {
  try {
    Clazz clazz = analyzer.findClass(type);
    if (clazz != null && (!topLevel || !clazz.isAbstract())
      && ((intface && clazz.isInterface()) ^ clazz.hasPublicNoArgsConstructor())) {
      TypeRef[] intfs = clazz.getInterfaces();
      if (intfs != null) {
        for (TypeRef intf : intfs) {
          if (COLLECTION.matcher(intf.getFQN())
            .matches() || identifiableCollection(intf, true, false)) {
            return true;
          }
        }
      }
      TypeRef ext = clazz.getSuper();
      return ext != null && identifiableCollection(ext, false, false);
    }
  } catch (Exception e) {
    return false;
  }
  return false;
}
origin: biz.aQute.bnd/biz.aQute.bndlib

  if (annoServiceClazz.isInterface())
    return false;
  TypeRef zuper = annoServiceClazz.getSuper();
  if (zuper == null)
    return false;
TypeRef superType = annoServiceClazz.getSuper();
if (superType != null) {
  try {
origin: biz.aQute/bndlib

getCovariantReturns(set, clazz.getSuper());
origin: biz.aQute.bnd/biz.aQute.bndlib

lifecycleMethods.putAll(classLifecyclemethods);
bindmethods.putAll(classBindmethods);
typeRef = clazz.getSuper();
if (typeRef == null)
  break;
origin: biz.aQute.bnd/bndlib

lifecycleMethods.putAll(classLifecyclemethods);
bindmethods.putAll(classBindmethods);
typeRef = clazz.getSuper();
if (typeRef == null)
  break;
origin: biz.aQute/bndlib

lifecycleMethods.putAll(classLifecyclemethods);
bindmethods.putAll(classBindmethods);
typeRef = clazz.getSuper();
if (typeRef == null)
  break;
origin: biz.aQute.bnd/biz.aQute.bnd

lifecycleMethods.putAll(classLifecyclemethods);
bindmethods.putAll(classBindmethods);
typeRef = clazz.getSuper();
if (typeRef == null)
  break;
origin: biz.aQute.bnd/biz.aQute.bnd

  if (annoServiceClazz.isInterface())
    return false;
  TypeRef zuper = annoServiceClazz.getSuper();
  if (zuper == null)
    return false;
TypeRef superType = annoServiceClazz.getSuper();
if (superType != null) {
  try {
origin: biz.aQute.bnd/bnd

lifecycleMethods.putAll(classLifecyclemethods);
bindmethods.putAll(classBindmethods);
typeRef = clazz.getSuper();
if (typeRef == null)
  break;
aQute.bnd.osgiClazzgetSuper

Popular methods of Clazz

  • <init>
  • parseClassFileWithCollector
  • getClassName
  • getFQN
  • getReferred
  • is
  • isAnnotation
  • isInterface
  • crawl
    We must find Class.forName references ...
  • doAnnotation
  • doAnnotations
  • doAttribute
    Process a single attribute, if not recognized, skip it.
  • doAnnotations,
  • doAttribute,
  • doAttributes,
  • doCode,
  • doConstantValue,
  • doElementValue,
  • doEnclosingMethod,
  • doExceptions,
  • doInnerClasses,
  • doParameterAnnotations

Popular in Java

  • Creating JSON documents from java classes using gson
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • startActivity (Activity)
  • getSystemService (Context)
  • Kernel (java.awt.image)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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