![JAR search and dependency download from the Maven repository](/logo.png)
cn.wensiqun.asmsupport.client.block.ForEach Maven / Gradle / Ivy
/**
* Asmsupport is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package cn.wensiqun.asmsupport.client.block;
import cn.wensiqun.asmsupport.client.def.Param;
import cn.wensiqun.asmsupport.client.def.ParamPostern;
import cn.wensiqun.asmsupport.client.def.var.LocVar;
import cn.wensiqun.asmsupport.core.block.control.loop.KernelForEach;
import cn.wensiqun.asmsupport.core.definition.variable.LocalVariable;
import cn.wensiqun.asmsupport.standard.block.loop.IForEach;
import cn.wensiqun.asmsupport.standard.def.clazz.IClass;
public abstract class ForEach extends ProgramBlock implements IForEach {
public ForEach(Param iteratorVar) {
targetBlock = new KernelForEach(ParamPostern.getTarget(iteratorVar)) {
@Override
public void body(LocalVariable e) {
ForEach.this.body(new LocVar(cursor, e));
}
};
}
public ForEach(Param iteratorVar, IClass elementType) {
targetBlock = new KernelForEach(ParamPostern.getTarget(iteratorVar), elementType) {
@Override
public void body(LocalVariable e) {
ForEach.this.body(new LocVar(cursor, e));
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy