4a3cb7e50ab386ed6772a4ba6fa5b8f67395691a
[javainspect.git] / src / main / java / eu / svjatoslav / inspector / java / methods / Package.java
1 /*
2  * JavaInspect - Utility to visualize java software
3  * Copyright (C) 2013-2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.inspector.java.methods;
11
12 import java.util.HashMap;
13 import java.util.Map;
14
15 public class Package {
16
17     Map<String, Clazz> classes = new HashMap<>();
18
19 }