com.zhangyue.we.anoprocesser.xml.Attr Maven / Gradle / Ivy
The newest version!
package com.zhangyue.we.anoprocesser.xml;
import java.util.HashMap;
/**
* @author chengwei 2018/8/25
*/
public class Attr {
public String name;
public Func toFunc;
public HashMap enums = new HashMap<>();
public Attr(String name, Func toFunc) {
this.name = name;
this.toFunc = toFunc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy