1 package org.xvsm.core;
2
3 /***
4 * This entry is written into the "AnswerToContainer" as answer for void
5 * Operations and when CNT_ALL is used for reading and no entries are available.
6 *
7 * @author Christian Schreiber, Michael Proestler
8 *
9 */
10 public class VoidEntry extends Entry {
11
12 /***
13 * Serial version UID.
14 */
15 private static final long serialVersionUID = 8157332074349760988L;
16
17 public VoidEntry() {
18 super();
19 this.setEntryType(Entry.EntryTypes.VOID);
20 }
21
22 /***
23 * {@inheritDoc}
24 */
25 @Override
26 public Entry getFlatCopy() {
27 return new VoidEntry();
28 }
29
30 /***
31 * {@inheritDoc}
32 */
33 @Override
34 public String toString() {
35 return "VoidEntry";
36 }
37
38 }