Back to project page TwelveRules.
The source code is released under:
Apache License
If you think the Android project TwelveRules listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.manuelpeinado.twelverules; /* ww w. j a v a 2s . co m*/ import java.util.ArrayList; import java.util.List; public class ColumnSet { private List<String> all = new ArrayList<String>(); public ColumnSet(DatabaseColumn col) { and(col); } public ColumnSet and(DatabaseColumn col) { all.add(col.getName()); return this; } public String[] get() { String[] aux = new String[0]; return all.toArray(aux); } }