Sha256: 1dcd4b912703ed6416bdc14e2d1bbbeb2c051643e6563637e716b8783f74ebc8
Contents?: true
Size: 819 Bytes
Versions: 2
Compression:
Stored size: 819 Bytes
Contents
// // <%= @class_name %>VO.h // PureMVC_ObjectiveC // // Created by <%= @developer.capitalize %> on <%= @created_on %> // Copyright(c) <%= Time.now.year %>, All rights reserved. // #import <UIKit/UIKit.h> @interface <%= @class_name %>VO : NSObject { NSString *<%= @project_name %>name, *firstName, *lastName, *email, *password, *confirmPassword, *department; } @property(nonatomic, retain) NSString *<%= @project_name %>name, *firstName, *lastName, *email, *password, *confirmPassword, *department; +(id)with<%= @class_name %>Name:(NSString *)<%= @project_name %>name firstName:(NSString *)firstName lastName:(NSString *)lastName email:(NSString *)email password:(NSString *)password confirmPassword:(NSString *)confirmPassword department:(NSString *)department; -(NSString *)givenName; -(BOOL)isValid; @end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
appjam-0.1.2 | lib/appjam/generators/project/Classes/contacts/model/vo/UserVO.h.tt |
appjam-0.1.1 | lib/appjam/generators/project/Classes/contacts/model/vo/UserVO.h.tt |