com.clertonleal.proto.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Proto Show documentation
Show all versions of Proto Show documentation
A simple library to serialize Android cursors in objects.
package com.clertonleal.proto;
public class Configuration {
private boolean closeCursor;
public boolean isClosingCursor() {
return closeCursor;
}
public void closeCursor(boolean closeCursor) {
this.closeCursor = closeCursor;
}
}