Changeset 5197
- Timestamp:
- Dec 14, 2009, 12:07:59 PM (13 years ago)
- Location:
- branches/2.14-stable/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.14-stable/src/core/net/sf/basedb/core/AbstractEntityQuery.java
r4889 r5197 331 331 { 332 332 return rootType; 333 } 334 /** 335 @since 2.14.2 336 */ 337 public void setIncludes(Collection<Include> includes) 338 { 339 this.includes.clear(); 340 this.includes.addAll(includes); 333 341 } 334 342 public void include(Include... includes) -
branches/2.14-stable/src/core/net/sf/basedb/core/query/EntityQuery.java
r4889 r5197 76 76 77 77 /** 78 Clears the lists of includes and adds a new collection. 79 @see #include(Include...) 80 81 @param includes The new includes to be hold in the list. 82 @since 2.14.2 83 */ 84 public void setIncludes(Collection<Include> includes); 85 86 /** 78 87 Specify options for which items to exclude from the result. 79 88 -
branches/2.14-stable/src/webservices/server/net/sf/basedb/ws/server/ServicesUtil.java
r4513 r5197 69 69 if (qOpt.getIncludeNotRemoved()) includes.add(Include.NOT_REMOVED); 70 70 71 query. include(includes);71 query.setIncludes(includes); 72 72 if (qOpt.getRestriction() != null) 73 73 {
Note: See TracChangeset
for help on using the changeset viewer.