Skip to content

Commit f04e95b

Browse files
committed
Rename package
1 parent be1d98d commit f04e95b

File tree

73 files changed

+1632
-1641
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1632
-1641
lines changed

src/com/activeandroid/sebbia/ActiveAndroid.java renamed to src/com/activeandroid/ActiveAndroid.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.activeandroid.sebbia;
1+
package com.activeandroid;
22

33
/*
44
* Copyright (C) 2010 Michael Pardo
@@ -19,7 +19,7 @@
1919
import android.content.Context;
2020
import android.database.sqlite.SQLiteDatabase;
2121

22-
import com.activeandroid.sebbia.util.Log;
22+
import com.activeandroid.util.Log;
2323

2424
public final class ActiveAndroid {
2525
//////////////////////////////////////////////////////////////////////////////////////

src/com/activeandroid/sebbia/Cache.java renamed to src/com/activeandroid/Cache.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.activeandroid.sebbia;
1+
package com.activeandroid;
22

33
/*
44
* Copyright (C) 2010 Michael Pardo
@@ -24,12 +24,12 @@
2424
import android.database.sqlite.SQLiteDatabase;
2525
import android.support.v4.util.LruCache;
2626

27-
import com.activeandroid.sebbia.annotation.DoNotGenerate;
28-
import com.activeandroid.sebbia.internal.EmptyModelFiller;
29-
import com.activeandroid.sebbia.internal.ModelFiller;
30-
import com.activeandroid.sebbia.serializer.TypeSerializer;
31-
import com.activeandroid.sebbia.util.Log;
32-
import com.activeandroid.sebbia.util.ReflectionUtils;
27+
import com.activeandroid.annotation.DoNotGenerate;
28+
import com.activeandroid.internal.EmptyModelFiller;
29+
import com.activeandroid.internal.ModelFiller;
30+
import com.activeandroid.serializer.TypeSerializer;
31+
import com.activeandroid.util.Log;
32+
import com.activeandroid.util.ReflectionUtils;
3333

3434
public final class Cache {
3535
//////////////////////////////////////////////////////////////////////////////////////

src/com/activeandroid/sebbia/Configuration.java renamed to src/com/activeandroid/Configuration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.activeandroid.sebbia;
1+
package com.activeandroid;
22

33
/*
44
* Copyright (C) 2010 Michael Pardo
@@ -22,9 +22,9 @@
2222

2323
import android.content.Context;
2424

25-
import com.activeandroid.sebbia.serializer.TypeSerializer;
26-
import com.activeandroid.sebbia.util.Log;
27-
import com.activeandroid.sebbia.util.ReflectionUtils;
25+
import com.activeandroid.serializer.TypeSerializer;
26+
import com.activeandroid.util.Log;
27+
import com.activeandroid.util.ReflectionUtils;
2828

2929
public class Configuration {
3030

src/com/activeandroid/sebbia/DatabaseHelper.java renamed to src/com/activeandroid/DatabaseHelper.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.activeandroid.sebbia;
1+
package com.activeandroid;
22

33
/*
44
* Copyright (C) 2010 Michael Pardo
@@ -32,12 +32,12 @@
3232
import android.database.sqlite.SQLiteOpenHelper;
3333
import android.text.TextUtils;
3434

35-
import com.activeandroid.sebbia.automigration.AutoMigration;
36-
import com.activeandroid.sebbia.util.IOUtils;
37-
import com.activeandroid.sebbia.util.Log;
38-
import com.activeandroid.sebbia.util.NaturalOrderComparator;
39-
import com.activeandroid.sebbia.util.SQLiteUtils;
40-
import com.activeandroid.sebbia.util.SqlParser;
35+
import com.activeandroid.automigration.AutoMigration;
36+
import com.activeandroid.util.IOUtils;
37+
import com.activeandroid.util.Log;
38+
import com.activeandroid.util.NaturalOrderComparator;
39+
import com.activeandroid.util.SQLiteUtils;
40+
import com.activeandroid.util.SqlParser;
4141

4242
public final class DatabaseHelper extends SQLiteOpenHelper {
4343
//////////////////////////////////////////////////////////////////////////////////////

src/com/activeandroid/sebbia/Model.java renamed to src/com/activeandroid/Model.java

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.activeandroid.sebbia;
1+
package com.activeandroid;
22

33
/*
44
* Copyright (C) 2010 Michael Pardo
@@ -26,16 +26,16 @@
2626
import android.database.sqlite.SQLiteDatabase;
2727
import android.database.sqlite.SQLiteStatement;
2828

29-
import com.activeandroid.sebbia.content.ContentProvider;
30-
import com.activeandroid.sebbia.internal.ModelFiller;
31-
import com.activeandroid.sebbia.internal.ModelHelper;
32-
import com.activeandroid.sebbia.model.ManyToManyRelation;
33-
import com.activeandroid.sebbia.model.OneToManyRelation;
34-
import com.activeandroid.sebbia.query.Delete;
35-
import com.activeandroid.sebbia.query.Select;
36-
import com.activeandroid.sebbia.serializer.TypeSerializer;
37-
import com.activeandroid.sebbia.util.Log;
38-
import com.activeandroid.sebbia.util.ReflectionUtils;
29+
import com.activeandroid.content.ContentProvider;
30+
import com.activeandroid.internal.ModelFiller;
31+
import com.activeandroid.internal.ModelHelper;
32+
import com.activeandroid.model.ManyToManyRelation;
33+
import com.activeandroid.model.OneToManyRelation;
34+
import com.activeandroid.query.Delete;
35+
import com.activeandroid.query.Select;
36+
import com.activeandroid.serializer.TypeSerializer;
37+
import com.activeandroid.util.Log;
38+
import com.activeandroid.util.ReflectionUtils;
3939

4040
@SuppressWarnings("unchecked")
4141
public abstract class Model {

src/com/activeandroid/sebbia/ModelInfo.java renamed to src/com/activeandroid/ModelInfo.java

+9-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.activeandroid.sebbia;
1+
package com.activeandroid;
22

33
/*
44
* Copyright (C) 2010 Michael Pardo
@@ -16,30 +16,24 @@
1616
* limitations under the License.
1717
*/
1818

19-
import com.activeandroid.sebbia.util.MultiDexHelper;
19+
import com.activeandroid.util.MultiDexHelper;
2020
import java.io.File;
21-
import java.io.IOException;
2221
import java.lang.reflect.Modifier;
23-
import java.net.URL;
24-
import java.util.ArrayList;
2522
import java.util.Calendar;
2623
import java.util.Collection;
27-
import java.util.Enumeration;
2824
import java.util.HashMap;
2925
import java.util.List;
3026
import java.util.Map;
3127

3228
import android.content.Context;
3329

34-
import com.activeandroid.sebbia.serializer.CalendarSerializer;
35-
import com.activeandroid.sebbia.serializer.FileSerializer;
36-
import com.activeandroid.sebbia.serializer.SqlDateSerializer;
37-
import com.activeandroid.sebbia.serializer.TypeSerializer;
38-
import com.activeandroid.sebbia.serializer.UtilDateSerializer;
39-
import com.activeandroid.sebbia.util.Log;
40-
import com.activeandroid.sebbia.util.ReflectionUtils;
41-
42-
import dalvik.system.DexFile;
30+
import com.activeandroid.serializer.CalendarSerializer;
31+
import com.activeandroid.serializer.FileSerializer;
32+
import com.activeandroid.serializer.SqlDateSerializer;
33+
import com.activeandroid.serializer.TypeSerializer;
34+
import com.activeandroid.serializer.UtilDateSerializer;
35+
import com.activeandroid.util.Log;
36+
import com.activeandroid.util.ReflectionUtils;
4337

4438
final class ModelInfo {
4539
//////////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)