public
Description: JvYAMLb is a YAML processing library for Java, used by JRuby
Homepage: http://code.google.com/p/jvyamlb
Clone URL: git://github.com/olabini/jvyamlb.git
Add first part of new positioning work. Currently not working at all.
olabini (author)
Sat Jun 21 06:28:14 -0700 2008
commit  65780b807df3009f5a99e8903f7e19c0c3156654
tree    3bef2d3e9ee73205a0933d5a2355dc541a97a219
parent  c21b7f516cff03406b72633426f2e3b8114b75a4
...
7
8
9
 
 
 
10
...
7
8
9
10
11
12
13
0
@@ -7,4 +7,7 @@ package org.jvyamlb.tokens;
0
  * @author <a href="mailto:ola.bini@gmail.com">Ola Bini</a>
0
  */
0
 public class StreamEndToken extends Token {
0
+ public boolean equals(Object other) {
0
+ return this == other || (other instanceof StreamEndToken);
0
+ }
0
 }// StreamEndToken
...
7
8
9
 
 
 
10
...
7
8
9
10
11
12
13
0
@@ -7,4 +7,7 @@ package org.jvyamlb.tokens;
0
  * @author <a href="mailto:ola.bini@gmail.com">Ola Bini</a>
0
  */
0
 public class StreamStartToken extends Token {
0
+ public boolean equals(Object other) {
0
+ return this == other || (other instanceof StreamStartToken);
0
+ }
0
 }// StreamStartToken

Comments

    No one has commented yet.