framework 0.2.4

Framework is a detector for different frameworks in one projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::facet::java::content_root::ContentRoot;

#[derive(Serialize, Deserialize, PartialEq, Debug, Clone)]
pub struct JavaModuleData {
    pub module_name: String,
    pub content_roots: Vec<ContentRoot>,
}

impl Default for JavaModuleData {
    fn default() -> Self {
        JavaModuleData {
            module_name: "".to_string(),
            content_roots: vec![],
        }
    }
}