X-Git-Url: https://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Fedit%2FFieldEdit.java;fp=tim%2Fprune%2Fedit%2FFieldEdit.java;h=0000000000000000000000000000000000000000;hb=54b9d8bc8f0025ccf97a67d9dd217ef1f9cf082f;hp=5877ab1799a1851e785c5c46a4284c0b3f04fa69;hpb=52bf9e8686c916be37a26a0b75340393d4478b05;p=GpsPrune.git diff --git a/tim/prune/edit/FieldEdit.java b/tim/prune/edit/FieldEdit.java deleted file mode 100644 index 5877ab1..0000000 --- a/tim/prune/edit/FieldEdit.java +++ /dev/null @@ -1,40 +0,0 @@ -package tim.prune.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; - } -}