OSDN Git Service

initial
[gokigen/A01d.git] / app / src / main / java / net / osdn / gokigen / a01d / liveview / bitmapconvert / ImageConvertFactory.java
1 package net.osdn.gokigen.a01d.liveview.bitmapconvert;
2
3 /**
4  *
5  *
6  */
7 public class ImageConvertFactory
8 {
9     private static final int CONVERT_TYPE_0 = 0;
10     private static final int CONVERT_TYPE_1 = 1;
11     private static final int CONVERT_TYPE_2 = 2;
12     private static final int CONVERT_TYPE_3 = 3;
13     private static final int CONVERT_TYPE_4 = 4;
14     private static final int CONVERT_TYPE_5 = 5;
15     private static final int CONVERT_TYPE_6 = 6;
16
17     public static IPreviewImageConverter getImageConverter(int id)
18     {
19         IPreviewImageConverter drawer = new ConvertNothing();
20         return (drawer);
21     }
22 }