X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Ffunction%2Fedit%2FFieldEdit.java;fp=tim%2Fprune%2Ffunction%2Fedit%2FFieldEdit.java;h=0000000000000000000000000000000000000000;hb=ce6f2161b8596f7018d6a76bff79bc9e571f35fd;hp=41f38b3c145f266611fb619b0b57e6d0ba7264f4;hpb=2d8cb72e84d5cc1089ce77baf1e34ea3ea2f8465;p=GpsPrune.git diff --git a/tim/prune/function/edit/FieldEdit.java b/tim/prune/function/edit/FieldEdit.java deleted file mode 100644 index 41f38b3..0000000 --- a/tim/prune/function/edit/FieldEdit.java +++ /dev/null @@ -1,40 +0,0 @@ -package tim.prune.function.edit; - -import tim.prune.data.Field; - -/** - * Class to hold a single field edit including Field and new value - */ -public class FieldEdit -{ - private Field _field = null; - private String _value = null; - - /** - * Constructor - * @param inField field to edit - * @param inValue new value - */ - public FieldEdit(Field inField, String inValue) - { - _field = inField; - _value = inValue; - } - - - /** - * @return the field - */ - public Field getField() - { - return _field; - } - - /** - * @return the value - */ - public String getValue() - { - return _value; - } -}