Package refactoring

This commit is contained in:
Philipp Jahoda 2015-11-08 17:45:07 +01:00
parent ee0fd10fc4
commit 691ce133b8
12 changed files with 19 additions and 20 deletions

View file

@ -6,23 +6,15 @@ import android.view.WindowManager;
import com.github.mikephil.charting.animation.Easing;
import com.github.mikephil.charting.charts.BarChart;
import com.github.mikephil.charting.charts.LineChart;
import com.github.mikephil.charting.components.YAxis;
import com.github.mikephil.charting.data.BarData;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.LineData;
import com.github.mikephil.charting.data.realm.RealmBarDataSet;
import com.github.mikephil.charting.data.realm.RealmLineDataSet;
import com.github.mikephil.charting.data.realm.implementation.RealmBarDataSet;
import com.github.mikephil.charting.interfaces.datasets.IBarDataSet;
import com.github.mikephil.charting.interfaces.datasets.ILineDataSet;
import com.xxmassdeveloper.mpchartexample.custom.RealmDemoData;
import com.xxmassdeveloper.mpchartexample.notimportant.DemoBase;
import com.xxmassdeveloper.mpchartexample.notimportant.RealmBaseActivity;
import java.util.ArrayList;
import io.realm.Realm;
import io.realm.RealmConfiguration;
import io.realm.RealmResults;
/**

View file

@ -1,4 +1,4 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.base;
import android.graphics.Color;

View file

@ -1,4 +1,4 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.base;
import com.github.mikephil.charting.data.BaseDataSet;
import com.github.mikephil.charting.data.Entry;

View file

@ -1,4 +1,4 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.base;
import android.graphics.Color;

View file

@ -1,4 +1,4 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.base;
import android.graphics.DashPathEffect;

View file

@ -1,8 +1,9 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import android.graphics.Color;
import com.github.mikephil.charting.data.BarEntry;
import com.github.mikephil.charting.data.realm.base.RealmBarLineScatterCandleBubbleDataSet;
import com.github.mikephil.charting.interfaces.datasets.IBarDataSet;
import io.realm.RealmObject;

View file

@ -1,6 +1,7 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import com.github.mikephil.charting.data.BubbleEntry;
import com.github.mikephil.charting.data.realm.base.RealmBarLineScatterCandleBubbleDataSet;
import com.github.mikephil.charting.interfaces.datasets.IBubbleDataSet;
import io.realm.RealmObject;

View file

@ -1,9 +1,10 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import android.graphics.Color;
import android.graphics.Paint;
import com.github.mikephil.charting.data.CandleEntry;
import com.github.mikephil.charting.data.realm.base.RealmLineScatterCandleRadarDataSet;
import com.github.mikephil.charting.interfaces.datasets.ICandleDataSet;
import io.realm.RealmObject;

View file

@ -1,9 +1,10 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import android.graphics.Color;
import android.graphics.DashPathEffect;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.realm.base.RealmLineRadarDataSet;
import com.github.mikephil.charting.formatter.DefaultFillFormatter;
import com.github.mikephil.charting.formatter.FillFormatter;
import com.github.mikephil.charting.interfaces.datasets.ILineDataSet;

View file

@ -1,6 +1,7 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.realm.base.RealmBaseDataSet;
import com.github.mikephil.charting.interfaces.datasets.IPieDataSet;
import io.realm.RealmObject;

View file

@ -1,6 +1,7 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.realm.base.RealmLineRadarDataSet;
import com.github.mikephil.charting.interfaces.datasets.IRadarDataSet;
import io.realm.RealmObject;

View file

@ -1,7 +1,8 @@
package com.github.mikephil.charting.data.realm;
package com.github.mikephil.charting.data.realm.implementation;
import com.github.mikephil.charting.charts.ScatterChart;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.realm.base.RealmLineScatterCandleRadarDataSet;
import com.github.mikephil.charting.interfaces.datasets.IScatterDataSet;
import io.realm.RealmObject;