org.nutz.lang.util.ClassMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nutz Show documentation
Show all versions of nutz Show documentation
Nutz, which is a collections of lightweight frameworks, each of them can be used independently
package org.nutz.lang.util;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.nutz.json.Json;
public class ClassMeta {
public String type;
public Map> paramNames = new HashMap>();
public Map methodLines = new HashMap();
public String toString() {
return Json.toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy