Poging tot het flexibel laten werken van devices met features. Zou moeten werken via een enum, maar lukt nog niet.

This commit is contained in:
2011-02-02 13:00:33 +00:00
parent 35defa2593
commit 1e53c39bc2
8 changed files with 380 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package pm.device;
import pm.device.feature.Feature;
import pm.device.feature.Restart;
public enum Features {
Restart ((Class<Restart>)Restart.class);
Features(Class<Feature> feature) {
}
}