summaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/main/scala/com/yahoo/container/plugin/classanalysis/ClassFileMetaData.scala
blob: 00ed9efb360545ff7923ec9c97fb3ec592233498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright 2016 Yahoo Inc. 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])