Searched defs:projections (Results 1 - 1 of 1) sorted by last modified time

/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DXmlDocumentProvider.java56 * Each row is then populated with columns that are also defined as XPath-like projections. These
57 * projections fetch attributes values or text in the matching row node or its children.
123 * <p>Defining the projections as <code>/title</code>, <code>/author</code> and <code>@id</code>
340 public XMLCursor(String selection, String[] projections) { argument
341 super(projections);
342 // The first column in projections is used for the _ID
343 mNumberOfProjections = projections.length - 1;
345 createProjectionPattern(projections);
353 private void createProjectionPattern(String[] projections) { argument
362 String projection = projections[
[all...]

Completed in 92 milliseconds