mirror of
https://github.com/chylex/Code-Statistics.git
synced 2024-11-24 12:42:46 +01:00
17 lines
422 B
C#
17 lines
422 B
C#
using System.Collections.Generic;
|
|
using LanguageJava.Elements;
|
|
|
|
namespace LanguageJava.Handling{
|
|
public class JavaFileInfo{
|
|
public string Package;
|
|
public readonly HashSet<Import> Imports;
|
|
public readonly List<Type> Types;
|
|
|
|
public JavaFileInfo(){
|
|
Package = string.Empty;
|
|
Imports = new HashSet<Import>();
|
|
Types = new List<Type>();
|
|
}
|
|
}
|
|
}
|