All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yiwowang.intellij.finding.base.bean.ClassBean Maven / Gradle / Ivy

The newest version!
package com.yiwowang.intellij.finding.base.bean;

import java.util.List;

public class ClassBean {
    public boolean fromSystem;
    public Component component;
    public String name;
    public String path;
    public List members;
    public List superClassList;

    public ClassBean(Component component, String name) {
        this.component = component;
        this.name = name;
        path = name.replace(".", "/");
    }

    @Override
    public String toString() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy