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

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

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

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

public Set<TypeRef> parseClassFile(InputStream in, ClassDataCollector cd) throws Exception {
  try (DataInputStream din = new DataInputStream(in)) {
    return parseClassFileData(din, cd);
  }
}
origin: biz.aQute.bnd/biz.aQute.bnd

public Set<TypeRef> parseClassFile(InputStream in, ClassDataCollector cd) throws Exception {
  try (DataInputStream din = new DataInputStream(in)) {
    return parseClassFileData(din, cd);
  }
}
origin: biz.aQute.bnd/biz.aQute.bndlib

Set<TypeRef> parseClassFileData(DataInput in, ClassDataCollector cd) throws Exception {
  cds.push(this.cd);
  this.cd = cd;
  try {
    return parseClassFileData(in);
  } finally {
    this.cd = cds.pop();
  }
}
origin: biz.aQute.bnd/biz.aQute.bnd

Set<TypeRef> parseClassFileData(DataInput in, ClassDataCollector cd) throws Exception {
  cds.push(this.cd);
  this.cd = cd;
  try {
    return parseClassFileData(in);
  } finally {
    this.cd = cds.pop();
  }
}
origin: biz.aQute.bnd/biz.aQute.bndlib

public Set<TypeRef> parseClassFileWithCollector(ClassDataCollector cd) throws Exception {
  ByteBuffer bb = resource.buffer();
  if (bb != null) {
    return parseClassFileData(ByteBufferDataInput.wrap(bb), cd);
  }
  return parseClassFile(resource.openInputStream(), cd);
}
origin: biz.aQute.bnd/biz.aQute.bnd

public Set<TypeRef> parseClassFileWithCollector(ClassDataCollector cd) throws Exception {
  ByteBuffer bb = resource.buffer();
  if (bb != null) {
    return parseClassFileData(ByteBufferDataInput.wrap(bb), cd);
  }
  return parseClassFile(resource.openInputStream(), cd);
}
aQute.bnd.osgiClazzparseClassFileData

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
  • PhpStorm for WordPress
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