//generated by abstract-syntax-gen package de.peeeq.wurstscript.jassIm; import java.util.*; @SuppressWarnings({"cast", "unused", "rawtypes"}) public abstract class ImMethods extends AsgList implements Element{ public ImMethods copy() { ImMethods result = new ImMethodsImpl(); for (ImMethod elem : this) { result.add((ImMethod) elem.copy()); } return result; } @Override public ImMethods copyWithRefs() { ImMethods res = copy(); return res; } /** */ public abstract String toString(); /** */ public abstract ImFunction getNearestFunc(); /** */ public abstract de.peeeq.wurstscript.ast.Element attrTrace(); /** */ public abstract ImProg attrProg(); }