source: trunk/src/org/expeditee/items/MagneticConstraint/MagneticConstraintActionWithArgumentsAndReturnType.java@ 1510

Last change on this file since 1510 was 934, checked in by bln4, 10 years ago
File size: 364 bytes
Line 
1package org.expeditee.items.MagneticConstraint;
2
3import org.expeditee.items.Item;
4
5public abstract class MagneticConstraintActionWithArgumentsAndReturnType<ArgType, ReturnType> extends MagneticConstraintAction {
6
7 @Override
8 public boolean exec(Item item) {
9 return false;
10 }
11
12 abstract public ReturnType exec(final Item item, final ArgType args);
13}
Note: See TracBrowser for help on using the repository browser.