Added build info and clean poms a bit.
This commit is contained in:
parent
c259e28e44
commit
afd821c360
27 changed files with 298 additions and 176 deletions
|
|
@ -23,6 +23,7 @@
|
|||
package net.forwardfire.vasc.impl.frontend;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import net.forwardfire.vasc.core.VascEntry;
|
||||
|
|
@ -125,6 +126,15 @@ public class DefaultVascFrontendDataSelector implements VascFrontendDataSelector
|
|||
|
||||
*/
|
||||
|
||||
private List<VascEntryField> filter() {
|
||||
List<VascEntryField> result = new ArrayList<VascEntryField>(50);
|
||||
for (VascEntryField vef:entry.getVascEntryFields()) {
|
||||
|
||||
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public List<VascEntryField> getFieldsList() {
|
||||
List<VascEntryField> result = new ArrayList<VascEntryField>(50);
|
||||
result.addAll(entry.getVascEntryFields());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue