本文整理汇总了Java中com.cburch.logisim.circuit.CircuitMutation.remove方法的典型用法代码示例。如果您正苦于以下问题:Java CircuitMutation.remove方法的具体用法?Java CircuitMutation.remove怎么用?Java CircuitMutation.remove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.cburch.logisim.circuit.CircuitMutation
的用法示例。
在下文中一共展示了CircuitMutation.remove方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: performShortening
import com.cburch.logisim.circuit.CircuitMutation; //导入方法依赖的package包/类
private boolean performShortening(Canvas canvas, Location drag0, Location drag1) {
Wire shorten = willShorten(drag0, drag1);
if (shorten == null) {
return false;
} else {
CircuitMutation xn = new CircuitMutation(canvas.getCircuit());
StringGetter actName;
Wire result = getShortenResult(shorten, drag0, drag1);
if (result == null) {
xn.remove(shorten);
actName = Strings.getter("removeComponentAction", shorten.getFactory().getDisplayGetter());
} else {
xn.replace(shorten, result);
actName = Strings.getter("shortenWireAction");
}
canvas.getProject().doAction(xn.toAction(actName));
return true;
}
}
示例2: performShortening
import com.cburch.logisim.circuit.CircuitMutation; //导入方法依赖的package包/类
private boolean performShortening(Canvas canvas, Location drag0,
Location drag1) {
Wire shorten = willShorten(drag0, drag1);
if (shorten == null) {
return false;
} else {
CircuitMutation xn = new CircuitMutation(canvas.getCircuit());
StringGetter actName;
Wire result = getShortenResult(shorten, drag0, drag1);
if (result == null) {
xn.remove(shorten);
actName = Strings.getter("removeComponentAction", shorten
.getFactory().getDisplayGetter());
} else {
xn.replace(shorten, result);
actName = Strings.getter("shortenWireAction");
}
canvas.getProject().doAction(xn.toAction(actName));
return true;
}
}
示例3: performShortening
import com.cburch.logisim.circuit.CircuitMutation; //导入方法依赖的package包/类
private boolean performShortening(Canvas canvas, Location drag0, Location drag1) {
Wire shorten = willShorten(drag0, drag1);
if (shorten == null) {
return false;
} else {
CircuitMutation xn = new CircuitMutation(canvas.getCircuit());
StringGetter actName;
Wire result = getShortenResult(shorten, drag0, drag1);
if (result == null) {
xn.remove(shorten);
actName = Strings.getter("removeComponentAction",
shorten.getFactory().getDisplayGetter());
} else {
xn.replace(shorten, result);
actName = Strings.getter("shortenWireAction");
}
canvas.getProject().doAction(xn.toAction(actName));
return true;
}
}
示例4: actionPerformed
import com.cburch.logisim.circuit.CircuitMutation; //导入方法依赖的package包/类
@Override
public void actionPerformed(ActionEvent e) {
Object src = e.getSource();
if (src == del) {
Circuit circ = proj.getCurrentCircuit();
CircuitMutation xn = new CircuitMutation(circ);
xn.remove(comp);
proj.doAction(
xn.toAction(Strings.getter("removeComponentAction", comp.getFactory().getDisplayGetter())));
} else if (src == attrs) {
proj.getFrame().viewComponentAttributes(circ, comp);
}
}
示例5: deleteAllHelper
import com.cburch.logisim.circuit.CircuitMutation; //导入方法依赖的package包/类
void deleteAllHelper(CircuitMutation xn) {
for (Component comp : selected) {
xn.remove(comp);
}
selected.clear();
lifted.clear();
fireSelectionChanged();
}
示例6: actionPerformed
import com.cburch.logisim.circuit.CircuitMutation; //导入方法依赖的package包/类
public void actionPerformed(ActionEvent e) {
Object src = e.getSource();
if (src == del) {
Circuit circ = proj.getCurrentCircuit();
CircuitMutation xn = new CircuitMutation(circ);
xn.remove(comp);
proj.doAction(xn.toAction(Strings.getter("removeComponentAction", comp.getFactory().getDisplayGetter())));
} else if (src == attrs) {
proj.getFrame().viewComponentAttributes(circ, comp);
}
}