01: // ================================================================
02: // Copyright (c) 2000-2005 CollabNet. All rights reserved.
03: //
04: // Redistribution and use in source and binary forms, with or without
05: // modification, are permitted provided that the following conditions are
06: // met:
07: //
08: // 1. Redistributions of source code must retain the above copyright
09: // notice, this list of conditions and the following disclaimer.
10: //
11: // 2. Redistributions in binary form must reproduce the above copyright
12: // notice, this list of conditions and the following disclaimer in the
13: // documentation and/or other materials provided with the distribution.
14: //
15: // 3. The end-user documentation included with the redistribution, if
16: // any, must include the following acknowlegement: "This product includes
17: // software developed by Collab.Net <http://www.Collab.Net/>."
18: // Alternately, this acknowlegement may appear in the software itself, if
19: // and wherever such third-party acknowlegements normally appear.
20: //
21: // 4. The hosted project names must not be used to endorse or promote
22: // products derived from this software without prior written
23: // permission. For written permission, please contact info@collab.net.
24: //
25: // 5. Products derived from this software may not use the "Tigris" or
26: // "Scarab" names nor may "Tigris" or "Scarab" appear in their names without
27: // prior written permission of Collab.Net.
28: //
29: // THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
30: // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31: // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32: // IN NO EVENT SHALL COLLAB.NET OR ITS CONTRIBUTORS BE LIABLE FOR ANY
33: // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34: // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
35: // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36: // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
37: // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
38: // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
39: // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40: //
41: // ====================================================================
42: //
43: // This software consists of voluntary contributions made by many
44: // individuals on behalf of Collab.Net.
45:
46: package org.tigris.scarab.om;
47:
48: import org.apache.torque.om.Persistent;
49:
50: /**
51: * You should add additional methods to this class to meet the
52: * application requirements. This class will only be generated as
53: * long as it does not already exist in the output directory.
54: */
55: public class Condition extends BaseCondition implements Persistent {
56: public boolean equals(Condition cond) {
57: boolean bRdo = false;
58: Integer attr1 = this .getAttributeId();
59: Integer attr2 = cond.getAttributeId();
60: if ((attr1 != null && attr2 != null && attr1.intValue() == attr2
61: .intValue())
62: || attr1 == attr2) {
63: attr1 = this .getOptionId();
64: attr2 = cond.getOptionId();
65: if ((attr1 != null && attr2 != null && attr1.intValue() == attr2
66: .intValue())
67: || attr1 == attr2) {
68: attr1 = this .getModuleId();
69: attr2 = cond.getModuleId();
70: if ((attr1 != null && attr2 != null && attr1.intValue() == attr2
71: .intValue())
72: || attr1 == attr2) {
73: attr1 = this .getIssueTypeId();
74: attr2 = cond.getIssueTypeId();
75: if ((attr1 != null && attr2 != null && attr1
76: .intValue() == attr2.intValue())
77: || attr1 == attr2) {
78: bRdo = true;
79: }
80: }
81: }
82: }
83: return bRdo;
84: }
85:
86: public boolean equals(Object obj) {
87: return this .equals((Condition) obj);
88: }
89: }
|