summaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/main/scala/com/yahoo/container/plugin/classanalysis/ClassFileMetaData.scala
blob: fb395749895fa7823384c8af9c2dacb5d33d89e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.classanalysis

/**
 * The result of analyzing a .class file.
 * @author  tonytv
 */
sealed case class ClassFileMetaData(name:String,
                                    referencedClasses : Set[String],
                                    exportPackage : Option[ExportPackageAnnotation])