auto-sync

This commit is contained in:
rusEfi 2015-01-18 08:03:52 -06:00
parent 154f9fef45
commit 4d2c4258c9
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package com.rusefi.trigger;
/**
* (c) Andrey Belomutskiy
* 1/18/2015
*/
public class MiataNA implements TriggerShape {
@Override
public int getTotalToothCount() {
return 6;
}
}

View File

@ -0,0 +1,11 @@
package com.rusefi.trigger;
/**
* http://rusefi.com/wiki/index.php?title=Manual:Software:Trigger
*
* (c) Andrey Belomutskiy
* 1/18/2015
*/
public interface TriggerShape {
public int getTotalToothCount();
}

View File

@ -0,0 +1,9 @@
package com.rusefi.trigger;
/**
* (c) Andrey Belomutskiy
* 1/18/2015
*/
public class TriggerShapeHolder {
public static TriggerShape CURRENT = new MiataNA();
}