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

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

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

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

/**
 * Called for each attribute in the class, field, or method.
 * 
 * @param in The stream
 * @param access_flags
 * @throws Exception
 */
private void doAttributes(DataInput in, ElementType member, boolean crawl, int access_flags) throws Exception {
  int attributesCount = in.readUnsignedShort();
  for (int j = 0; j < attributesCount; j++) {
    doAttribute(in, member, crawl, access_flags);
  }
}
origin: biz.aQute.bnd/biz.aQute.bnd

/**
 * Called for each attribute in the class, field, or method.
 * 
 * @param in The stream
 * @param access_flags
 * @throws Exception
 */
private void doAttributes(DataInput in, ElementType member, boolean crawl, int access_flags) throws Exception {
  int attributesCount = in.readUnsignedShort();
  for (int j = 0; j < attributesCount; j++) {
    doAttribute(in, member, crawl, access_flags);
  }
}
origin: biz.aQute/bndlib

/**
 * Called for each attribute in the class, field, or method.
 * 
 * @param in
 *            The stream
 * @param access_flags
 * @throws Exception
 */
private void doAttributes(DataInputStream in, ElementType member, boolean crawl, int access_flags) throws Exception {
  int attributesCount = in.readUnsignedShort();
  for (int j = 0; j < attributesCount; j++) {
    // skip name CONSTANT_Utf8 pointer
    doAttribute(in, member, crawl, access_flags);
  }
}
origin: biz.aQute.bnd/bndlib

/**
 * Called for each attribute in the class, field, or method.
 * 
 * @param in
 *            The stream
 * @param access_flags
 * @throws Exception
 */
private void doAttributes(DataInputStream in, ElementType member, boolean crawl, int access_flags) throws Exception {
  int attributesCount = in.readUnsignedShort();
  for (int j = 0; j < attributesCount; j++) {
    // skip name CONSTANT_Utf8 pointer
    doAttribute(in, member, crawl, access_flags);
  }
}
origin: biz.aQute.bnd/bnd

/**
 * Called for each attribute in the class, field, or method.
 * 
 * @param in
 *            The stream
 * @param access_flags
 * @throws Exception
 */
private void doAttributes(DataInputStream in, ElementType member, boolean crawl, int access_flags) throws Exception {
  int attributesCount = in.readUnsignedShort();
  for (int j = 0; j < attributesCount; j++) {
    // skip name CONSTANT_Utf8 pointer
    doAttribute(in, member, crawl, access_flags);
  }
}
aQute.bnd.osgiClazzdoAttribute

Javadoc

Process a single attribute, if not recognized, skip it.

Popular methods of Clazz

  • <init>
  • parseClassFileWithCollector
  • getClassName
  • getFQN
  • getReferred
  • is
  • isAnnotation
  • isInterface
  • crawl
    We must find Class.forName references ...
  • doAnnotation
  • doAnnotations
  • doAttributes
    Called for each attribute in the class, field, or method.
  • doAnnotations,
  • doAttributes,
  • doCode,
  • doConstantValue,
  • doElementValue,
  • doEnclosingMethod,
  • doExceptions,
  • doInnerClasses,
  • doParameterAnnotations

Popular in Java

  • Start an intent from android
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (Timer)
  • getContentResolver (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • String (java.lang)
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Best plugins for Eclipse
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