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: Graphics operator: w.
09: @author Nassib Nassar
10: */
11: public class Xw extends PageMarkOperator {
12:
13: public Xw(PjNumber lineWidth) {
14: _lineWidth = lineWidth;
15: }
16:
17: public PjNumber getLineWidth() {
18: return _lineWidth;
19: }
20:
21: public long writePdf(OutputStream os) throws IOException {
22: long z = _lineWidth.writePdf(os);
23: z = z + writeln(os, " w");
24: return z;
25: }
26:
27: /**
28: Returns a deep copy of this object.
29: @return a deep copy of this object.
30: */
31: public Object clone() {
32: return this ;
33: }
34:
35: public boolean equals(Object obj) {
36: if (obj == null) {
37: return false;
38: }
39: if (obj instanceof Xw) {
40: return (_lineWidth.equals(((Xw) obj)._lineWidth));
41: } else {
42: return false;
43: }
44: }
45:
46: private PjNumber _lineWidth;
47:
48: }
|