/* * Copyright (C) 2011 Markus Junginger, greenrobot (http://greenrobot.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.marshalchen.common.commonUtils.dbUtils; import de.greenrobot.daogenerator.DaoGenerator; import de.greenrobot.daogenerator.Entity; import de.greenrobot.daogenerator.Schema; /** * Generates entities and DAOs for the example project DaoExample. * <p/> * Run it as a Java application (not Android). * * @author Markus */ public class DbDaoGenerator { final static String generatePath = "xxx/src/"; final static String getGenerateSchemaPath = "com.xxx.xxx.models.gen"; public static void main(String[] args) throws Exception { Schema schema = new Schema(1, getGenerateSchemaPath); addNote(schema); new DaoGenerator().generateAll(schema, generatePath); } private static void addNote(Schema schema) { Entity note = schema.addEntity("Brand"); note.addIdProperty(); note.addStringProperty("brandName").notNull(); note.addStringProperty("brandId").notNull(); note.addDateProperty("brandImageUri"); note.addStringProperty("brandInfos"); note.setHasKeepSections(true); note.setSkipGeneration(true); } // private static void addCustomerOrder(Schema schema) { // Entity customer = schema.addEntity("Customer"); // customer.addIdProperty(); // customer.addStringProperty("name").notNull(); // // Entity order = schema.addEntity("Order"); // order.setTableName("ORDERS"); // "ORDER" is a reserved keyword // order.addIdProperty(); // Property orderDate = order.addDateProperty("date").getProperty(); // Property customerId = order.addLongProperty("customerId").notNull().getProperty(); // order.addToOne(customer, customerId); // // ToMany customerToOrders = customer.addToMany(order, customerId); // customerToOrders.setName("orders"); // customerToOrders.orderAsc(orderDate); // } }