1 package org.odbms; 2 3 17 18 37 public interface Query { 38 39 40 47 public Constraint constrain (Object example); 48 49 50 51 55 public ObjectSet execute (); 56 57 58 59 73 public Query descendant (String path); 74 75 76 86 public Query parent (String path); 87 88 89 96 public Query limitSize (int count); 97 98 99 106 public Query orderAscending (); 107 108 109 116 public Query orderDescending (); 117 118 119 } 120 121 | Popular Tags |