We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee4f146 commit 1870b19Copy full SHA for 1870b19
src/edu/stanford/nlp/semgraph/semgrex/Attribute.java
@@ -1,6 +1,8 @@
1
package edu.stanford.nlp.semgraph.semgrex;
2
3
-public class Attribute {
+import java.io.Serializable;
4
+
5
+public class Attribute implements Serializable {
6
final String key;
7
final Object cased;
8
final Object caseless;
@@ -12,4 +14,6 @@ public class Attribute {
12
14
this.caseless = caseless;
13
15
this.negated = negated;
16
}
17
18
+ private static final long serialVersionUID = 973567614155612487L;
19
0 commit comments