JAL-3141 Reworked a lot of BackupFiles to allow the Customise Checkbox
[jalview.git] / src / jalview / io / IntKeyStringValueEntry.java
1 package jalview.io;
2
3 public class IntKeyStringValueEntry
4 {
5   public int k;
6
7   public String v;
8
9   public IntKeyStringValueEntry(int k, String v)
10   {
11     this.k = k;
12     this.v = v;
13   }
14
15   @Override
16   public String toString()
17   {
18     return this.getValue();
19   }
20
21   public int getKey()
22   {
23     return k;
24   }
25
26   public String getValue()
27   {
28     return v;
29   }
30
31 }