]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/UnaryQueryPIntSet.java
DB query swapping to file system
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / UnaryQueryPIntSet.java
1 package org.simantics.db.impl.query;
2
3 abstract public class UnaryQueryPIntSet extends UnaryQueryP<IntSet> {
4
5     public UnaryQueryPIntSet(int r) {
6         super(r);
7     }
8     
9     @Override
10     public void serializeValue(QuerySerializer serializer) {
11         IntSet is = getResult();
12         is.serialize(serializer);
13     }
14
15 }