-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core Data, annotation, and Not Taken changes.
* data model now includes a notTaken flag for each BiometricData object, as well as a deleted flag for each Sensor (see issue #53). * Annotation segmented controls now only available for fingerprint data * Not Taken button available to mark any result as actively skipped.
- Loading branch information
1 parent
b4bf336
commit 456bb58
Showing
36 changed files
with
629 additions
and
721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// BiometricCollection.m | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "BiometricCollection.h" | ||
#import "BiometricData.h" | ||
#import "Workflow.h" | ||
|
||
|
||
@implementation BiometricCollection | ||
|
||
@dynamic presenterId; | ||
@dynamic isActive; | ||
@dynamic isComplete; | ||
@dynamic notes; | ||
@dynamic totalLength; | ||
@dynamic timestampStarted; | ||
@dynamic currentPosition; | ||
@dynamic timestampCompleted; | ||
@dynamic workflow; | ||
@dynamic items; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// | ||
// Capturer.h | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <CoreData/CoreData.h> | ||
|
||
@class Sensor, SensorParam, Workflow; | ||
|
||
@interface Capturer : NSManagedObject | ||
|
||
@property (nonatomic, retain) NSNumber * positionInWorkflow; | ||
@property (nonatomic, retain) NSNumber * captureType; | ||
@property (nonatomic, retain) Workflow *workflow; | ||
@property (nonatomic, retain) Sensor *sensor; | ||
@property (nonatomic, retain) NSSet *instanceParams; | ||
@end | ||
|
||
@interface Capturer (CoreDataGeneratedAccessors) | ||
|
||
- (void)addInstanceParamsObject:(SensorParam *)value; | ||
- (void)removeInstanceParamsObject:(SensorParam *)value; | ||
- (void)addInstanceParams:(NSSet *)values; | ||
- (void)removeInstanceParams:(NSSet *)values; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// Capturer.m | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "Capturer.h" | ||
#import "Sensor.h" | ||
#import "SensorParam.h" | ||
#import "Workflow.h" | ||
|
||
|
||
@implementation Capturer | ||
|
||
@dynamic positionInWorkflow; | ||
@dynamic captureType; | ||
@dynamic workflow; | ||
@dynamic sensor; | ||
@dynamic instanceParams; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// FaceSensor.h | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <CoreData/CoreData.h> | ||
#import "Sensor.h" | ||
|
||
|
||
@interface FaceSensor : Sensor | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// FaceSensor.m | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "FaceSensor.h" | ||
|
||
|
||
@implementation FaceSensor | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// | ||
// IrisSensor.m | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "IrisSensor.h" | ||
|
||
|
||
@implementation IrisSensor | ||
|
||
@dynamic supportsDualIris; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// MultimodalSensor.h | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <CoreData/CoreData.h> | ||
#import "Sensor.h" | ||
|
||
|
||
@interface MultimodalSensor : Sensor | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// MultimodalSensor.m | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "MultimodalSensor.h" | ||
|
||
|
||
@implementation MultimodalSensor | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// | ||
// Sensor.h | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <CoreData/CoreData.h> | ||
|
||
@class Capturer, SensorModality, SensorParam; | ||
|
||
@interface Sensor : NSManagedObject | ||
|
||
@property (nonatomic, retain) NSDate * timestampCreated; | ||
@property (nonatomic, retain) NSDate * timestampModified; | ||
@property (nonatomic, retain) NSNumber * connected; | ||
@property (nonatomic, retain) NSString * name; | ||
@property (nonatomic, retain) NSString * uri; | ||
@property (nonatomic, retain) NSNumber * deleted; | ||
@property (nonatomic, retain) NSSet *params; | ||
@property (nonatomic, retain) NSSet *modalities; | ||
@property (nonatomic, retain) NSSet *usedInCapturers; | ||
@end | ||
|
||
@interface Sensor (CoreDataGeneratedAccessors) | ||
|
||
- (void)addParamsObject:(SensorParam *)value; | ||
- (void)removeParamsObject:(SensorParam *)value; | ||
- (void)addParams:(NSSet *)values; | ||
- (void)removeParams:(NSSet *)values; | ||
|
||
- (void)addModalitiesObject:(SensorModality *)value; | ||
- (void)removeModalitiesObject:(SensorModality *)value; | ||
- (void)addModalities:(NSSet *)values; | ||
- (void)removeModalities:(NSSet *)values; | ||
|
||
- (void)addUsedInCapturersObject:(Capturer *)value; | ||
- (void)removeUsedInCapturersObject:(Capturer *)value; | ||
- (void)addUsedInCapturers:(NSSet *)values; | ||
- (void)removeUsedInCapturers:(NSSet *)values; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// | ||
// Sensor.m | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import "Sensor.h" | ||
#import "Capturer.h" | ||
#import "SensorModality.h" | ||
#import "SensorParam.h" | ||
|
||
|
||
@implementation Sensor | ||
|
||
@dynamic timestampCreated; | ||
@dynamic timestampModified; | ||
@dynamic connected; | ||
@dynamic name; | ||
@dynamic uri; | ||
@dynamic deleted; | ||
@dynamic params; | ||
@dynamic modalities; | ||
@dynamic usedInCapturers; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// SensorModality.h | ||
// wsabi | ||
// | ||
// Created by Matt Aronoff on 10/11/11. | ||
// Copyright (c) 2011 __MyCompanyName__. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <CoreData/CoreData.h> | ||
|
||
@class Sensor; | ||
|
||
@interface SensorModality : NSManagedObject | ||
|
||
@property (nonatomic, retain) NSNumber * type; | ||
@property (nonatomic, retain) Sensor *sensor; | ||
|
||
@end |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.