de.greenrobot.daogenerator.ContentProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greendao-generator-encryption Show documentation
Show all versions of greendao-generator-encryption Show documentation
Code generator for greenDAO, the light and fast ORM for Android
The newest version!
package de.greenrobot.daogenerator;
import java.util.List;
public class ContentProvider {
private final List entities;
private String authority;
private String basePath;
private String className;
private String javaPackage;
private boolean readOnly;
private Schema schema;
public ContentProvider(Schema schema, List entities) {
this.schema = schema;
this.entities = entities;
}
public String getAuthority() {
return authority;
}
public void setAuthority(String authority) {
this.authority = authority;
}
public String getBasePath() {
return basePath;
}
public void setBasePath(String basePath) {
this.basePath = basePath;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getJavaPackage() {
return javaPackage;
}
public void setJavaPackage(String javaPackage) {
this.javaPackage = javaPackage;
}
public boolean isReadOnly() {
return readOnly;
}
public void readOnly() {
this.readOnly = true;
}
public List getEntities() {
return entities;
}
public void init2ndPass() {
if (authority == null) {
authority = schema.getDefaultJavaPackage() + ".provider";
}
if (basePath == null) {
basePath = "";
}
if (className == null) {
className = entities.get(0).getClassName() + "ContentProvider";
}
if (javaPackage == null) {
javaPackage = schema.getDefaultJavaPackage();
}
}
}