Back to project page android-calendar-drafts.
The source code is released under:
Apache License
If you think the Android project android-calendar-drafts 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.touchableheroes.drafts.calendar.util; /*from w w w .j a va 2s. c om*/ import java.util.ArrayList; /** * Represents a "where" part of a query for content-provider. * * @author A. Siebert, ask@touchableheroes.com */ public class WherePart { private final String where; private final String[] values; public WherePart(final String where, final ArrayList<String> values) { this.where = where; this.values = values.toArray(new String[0]); } public String[] values() { return values; } public String pattern() { return where; } }