01: package com.etymon.pj.object.pagemark;
02:
03: import java.io.*;
04: import java.util.*;
05: import com.etymon.pj.object.*;
06:
07: /**
08: Path operator: h.
09: @author Nassib Nassar
10: */
11: public class Xh extends PageMarkOperator {
12:
13: public Xh() {
14: }
15:
16: public long writePdf(OutputStream os) throws IOException {
17: return writeln(os, "h");
18: }
19:
20: /**
21: Returns a deep copy of this object.
22: @return a deep copy of this object.
23: */
24: public Object clone() {
25: return this ;
26: }
27:
28: public boolean equals(Object obj) {
29: if (obj == null) {
30: return false;
31: }
32: return (obj instanceof Xh);
33: }
34:
35: }
|