Home | History | Annotate | Download | only in clearsilver

Lines Matching defs:cs

22  * Utility class that delegates all methods of an CS object. Made to
23 * facilitate the transition to CS being an interface and thus not
26 * This class, and its subclasses must take care to wrap or unwrap HDF and CS
30 public abstract class DelegatedCs implements CS {
31 private final CS cs;
33 public DelegatedCs(CS cs) {
35 this.cs = cs;
38 public CS getCs() {
39 return cs;