Tabnine Logo
JavaMetadata.getQualifiedClassName
Code IndexAdd Tabnine to your IDE (free)

How to use
getQualifiedClassName
method
in
org.jboss.windup.metadata.type.JavaMetadata

Best Java code snippets using org.jboss.windup.metadata.type.JavaMetadata.getQualifiedClassName (Showing top 4 results out of 315)

origin: org.jboss.windup/windup-reporting

@Override
protected String buildTitle(JavaMetadata meta, File rootDirectory) {
  return meta.getQualifiedClassName();
}

origin: org.jboss.windup/windup-engine

@Override
public JavaMetadata archiveEntryToMeta(ZipEntryMetadata archiveEntry) {
  File file = archiveEntry.getFilePointer();
  
  JavaMetadata meta = new JavaMetadata();
  meta.setArchiveMeta(archiveEntry.getArchiveMeta());
  meta.setFilePointer(file);
  populateMeta(meta);
  if(LOG.isDebugEnabled()) {
    LOG.debug("Processing: " + file.getAbsolutePath());
    LOG.debug("Processing: " + meta.getQualifiedClassName());
    
  }
  
  if (!customerPackageResolver.isCustomerPkg(meta.getQualifiedClassName())) {
    LOG.trace("Not customer type: "+meta.getQualifiedClassName());
    return null;
  }
  if (blacklistPackageResolver.containsGenerated(meta.getClassDependencies())) {
    LOG.trace("Class is generated.  Skip profiling.");
    return null;
  }
  // third does the class contain any blacklists?
  if (!blacklistPackageResolver.containsBlacklist(meta.getClassDependencies())) {
    LOG.trace("Class does not contain blacklists.");
    return null;
  }
  
  return meta;
}
origin: org.jboss.windup/windup-engine

cu.accept(new JavaASTVariableResolvingVisitor(cu, meta.getDecorations(), meta.getQualifiedClassName(), allDependencies, meta.getBlackListedDependencies()));
  String qualifiedTemp = pkg + td.getName().toString();
  if (StringUtils.equals(qualifiedTemp, meta.getQualifiedClassName())) {
    LOG.debug("Matched: " + qualifiedTemp);
    LOG.warn(qualifiedTemp + " did not match " + meta.getQualifiedClassName());
    continue;
origin: org.jboss.windup/windup-engine

@Override
public JavaMetadata fileEntryToMeta(FileMetadata entry) {
  JavaMetadata meta = new JavaMetadata();
  meta.setFilePointer(entry.getFilePointer());
  meta.setArchiveMeta(entry.getArchiveMeta());
  
  populateMeta(meta);
  
  if (!customerPackageResolver.isCustomerPkg(meta.getQualifiedClassName())) {
    LOG.trace("Not customer package.");
    return null;
  }
  if (blacklistPackageResolver.containsGenerated(meta.getClassDependencies())) {
    LOG.trace("Class is generated.  Skip profiling.");
    return null;
  }
  // third does the class contain any blacklists?
  if (!blacklistPackageResolver.containsBlacklist(meta.getClassDependencies())) {
    LOG.trace("Class does not contain blacklists.");
    return null;
  }
  
  return meta;
}

org.jboss.windup.metadata.typeJavaMetadatagetQualifiedClassName

Popular methods of JavaMetadata

  • getDecorations
  • <init>
  • getBlackListedDependencies
  • getClassDependencies
  • getFilePointer
  • getPathRelativeToArchive
  • setAbstractClz
  • setArchiveMeta
  • setBlackListedDependencies
  • setClassDependencies
  • setFilePointer
  • setInterfaceClz
  • setFilePointer,
  • setInterfaceClz,
  • setPublicClz,
  • setQualifiedClassName

Popular in Java

  • Reactive rest calls using spring rest template
  • runOnUiThread (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • notifyDataSetChanged (ArrayAdapter)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Notification (javax.management)
  • Top 25 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