1 21 22 package org.continuent.sequoia.controller.semantic; 23 24 import java.util.SortedSet ; 25 26 32 public class ViewSemantic 33 { 34 private String viewName; 35 private SortedSet readSet; 36 private SortedSet writeSet; 37 38 45 public ViewSemantic(String viewName, SortedSet readSet, SortedSet writeSet) 46 { 47 this.viewName = viewName; 48 this.readSet = readSet; 49 this.writeSet = writeSet; 50 } 51 52 57 public SortedSet getReadSet() 58 { 59 return readSet; 60 } 61 62 67 public String getViewName() 68 { 69 return viewName; 70 } 71 72 77 public SortedSet getWriteSet() 78 { 79 return writeSet; 80 } 81 82 } 83 | Popular Tags |