]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/src/org/simantics/databoard/type/BooleanType.java
Added addFirst/After/Before + remove SCL functions for Ordered Sets
[simantics/platform.git] / bundles / org.simantics.databoard / src / org / simantics / databoard / type / BooleanType.java
1 /*******************************************************************************
2  *  Copyright (c) 2010 Association for Decentralized Information Management in
3  *  Industry THTH ry.
4  *  All rights reserved. This program and the accompanying materials
5  *  are made available under the terms of the Eclipse Public License v1.0
6  *  which accompanies this distribution, and is available at
7  *  http://www.eclipse.org/legal/epl-v10.html
8  *
9  *  Contributors:
10  *      VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.databoard.type;
13
14 import java.util.Set;
15
16 import org.simantics.databoard.accessor.error.ReferenceException;
17 import org.simantics.databoard.accessor.reference.ChildReference;
18 import org.simantics.databoard.util.IdentityPair;
19
20
21 public class BooleanType extends Datatype {
22         
23         public BooleanType() {}
24                 
25     @Override
26     public int getComponentCount() {
27         return 0;
28     }
29     
30     @Override
31     public Datatype getComponentType(int index) {
32         throw new IllegalArgumentException();
33     }
34     
35     @Override
36     public Datatype getComponentType(ChildReference path) {
37         if (path==null) return this;
38         throw new IllegalArgumentException();
39     }
40     
41         @Override
42         public void accept(Visitor1 v, Object obj) {
43             v.visit(this, obj);        
44         }
45
46         @Override
47         public <T> T accept(Visitor<T> v) {
48             return v.visit(this);
49         }
50
51         @Override
52         protected boolean deepEquals(Object obj,
53                         Set<IdentityPair<Datatype, Datatype>> compareHistory) {
54                 if (this==obj) return true;
55                 if ( !hasEqualMetadata(obj) ) return false;
56                 return obj instanceof BooleanType;
57         }
58                 
59         @Override
60         public int hashCode() {
61                 return metadataHashCode() ^ 0xaaee333;
62         }    
63
64         @Override
65         public boolean equals(Object obj) {
66                 if ( this==obj ) return true;
67                 if ( !hasEqualMetadata(obj) ) return false;
68                 return obj instanceof BooleanType;
69         }
70
71         @SuppressWarnings("unchecked")
72         @Override
73         public <T extends Datatype> T getChildType(ChildReference reference) throws ReferenceException {
74                 if (reference==null) return (T) this;
75                 throw new ReferenceException(reference.getClass()+" is not a subreference of BooleanType");     
76         }
77         
78 }