buildflat exposes new interface that maps from a tree node to the set of flatnodes...
[IRC.git] / Robust / src / Analysis / SSJava / SSJavaType.java
1 package Analysis.SSJava;
2
3 import IR.TypeExtension;
4
5 public class SSJavaType implements TypeExtension {
6
7   private boolean isOwned;
8   private CompositeLocation compLoc;
9
10   public SSJavaType(boolean isOwned) {
11     this.isOwned = isOwned;
12   }
13
14   public CompositeLocation getCompLoc() {
15     return compLoc;
16   }
17
18   public void setCompLoc(CompositeLocation compLoc) {
19     this.compLoc = compLoc;
20   }
21
22   public boolean isOwned() {
23     return isOwned;
24   }
25
26   public void setOwned(boolean isOwned) {
27     this.isOwned = isOwned;
28   }
29
30 }