From 22251d0d2cc203e8347301f5deeb98b56d8f6cd8 Mon Sep 17 00:00:00 2001 From: Raghuveer R Gadipalli Date: Thu, 6 Dec 2012 22:30:01 -0500 Subject: [PATCH 01/12] Two lines added in main.m file --- CashReegister/main.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CashReegister/main.m b/CashReegister/main.m index c397b89..e7a5564 100644 --- a/CashReegister/main.m +++ b/CashReegister/main.m @@ -13,6 +13,8 @@ int main(int argc, char *argv[]) { @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } } From 0064409ff295b06506fed2c195e9052ac4d801c4 Mon Sep 17 00:00:00 2001 From: Raghuveer R Gadipalli Date: Thu, 6 Dec 2012 22:31:37 -0500 Subject: [PATCH 02/12] A comment line added in AppDelegate.h --- CashReegister/AppDelegate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CashReegister/AppDelegate.h b/CashReegister/AppDelegate.h index 44306c2..38a0092 100644 --- a/CashReegister/AppDelegate.h +++ b/CashReegister/AppDelegate.h @@ -11,5 +11,5 @@ @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; - +// comment added @end From 8c1ff11b70de551240d0a39e6b7eda9c67d92469 Mon Sep 17 00:00:00 2001 From: Raghuveer R Gadipalli Date: Thu, 6 Dec 2012 22:34:39 -0500 Subject: [PATCH 03/12] Two empty spaces added in "return YES" line. --- CashReegister/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CashReegister/AppDelegate.m b/CashReegister/AppDelegate.m index 41976ef..cbc756e 100644 --- a/CashReegister/AppDelegate.m +++ b/CashReegister/AppDelegate.m @@ -13,7 +13,7 @@ @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. - return YES; + return YES; } - (void)applicationWillResignActive:(UIApplication *)application From a5a6c6dcbf636d6f11faab344188509a4177f1d2 Mon Sep 17 00:00:00 2001 From: Raghuveer R Gadipalli Date: Thu, 6 Dec 2012 22:45:13 -0500 Subject: [PATCH 04/12] @property added in ViewController.h --- CashReegister/ViewController.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CashReegister/ViewController.h b/CashReegister/ViewController.h index 1da168b..42575f7 100644 --- a/CashReegister/ViewController.h +++ b/CashReegister/ViewController.h @@ -8,6 +8,9 @@ #import + @interface ViewController : UIViewController +@property (weak, nonatomic) IBOutlet UILabel *launchURLLabel; + @end From 56af4ba2da9a28171ab6ac51d1383a5da99e6ef3 Mon Sep 17 00:00:00 2001 From: Raghuveer R Gadipalli Date: Thu, 6 Dec 2012 22:48:53 -0500 Subject: [PATCH 05/12] A comment line added. --- CashReegister/ViewController.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CashReegister/ViewController.m b/CashReegister/ViewController.m index 274f7b0..0b53f73 100644 --- a/CashReegister/ViewController.m +++ b/CashReegister/ViewController.m @@ -10,6 +10,8 @@ @interface ViewController () +// add a paintingView here. + @end @implementation ViewController From 07f2f4cae92de02e4d72782747ef9423eda4e4e1 Mon Sep 17 00:00:00 2001 From: Raghuveer R Gadipalli Date: Thu, 6 Dec 2012 22:51:14 -0500 Subject: [PATCH 06/12] Two new lines added. --- CashReegister/CashReegister-Prefix.pch | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CashReegister/CashReegister-Prefix.pch b/CashReegister/CashReegister-Prefix.pch index 47c58f3..84f0bff 100644 --- a/CashReegister/CashReegister-Prefix.pch +++ b/CashReegister/CashReegister-Prefix.pch @@ -9,6 +9,8 @@ #endif #ifdef __OBJC__ + #import #import + #endif From ecc63a2744194a9e92b5584cd1b8c97246faa6c7 Mon Sep 17 00:00:00 2001 From: raghu Date: Wed, 14 Jul 2021 00:43:38 -0400 Subject: [PATCH 07/12] Added com.dg.controller.DgController java class. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9f6b665..8c4898a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ build/ xcuserdata .redcar +/bin/ From bc1b3c79b2b91ff80d94436ae035118366c106a5 Mon Sep 17 00:00:00 2001 From: raghu Date: Wed, 14 Jul 2021 00:45:35 -0400 Subject: [PATCH 08/12] Commiting DgController java class. --- src/com/dg/controller/DgController.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/com/dg/controller/DgController.java diff --git a/src/com/dg/controller/DgController.java b/src/com/dg/controller/DgController.java new file mode 100644 index 0000000..36e33d0 --- /dev/null +++ b/src/com/dg/controller/DgController.java @@ -0,0 +1,5 @@ +package com.dg.controller; + +public class DgController { + +} From bbc0aa7f2d644b26d2dd67d8b99fe38ae765251e Mon Sep 17 00:00:00 2001 From: raghu Date: Wed, 14 Jul 2021 00:51:07 -0400 Subject: [PATCH 09/12] Updated DgController --- src/com/dg/controller/DgController.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/dg/controller/DgController.java b/src/com/dg/controller/DgController.java index 36e33d0..558e86c 100644 --- a/src/com/dg/controller/DgController.java +++ b/src/com/dg/controller/DgController.java @@ -1,5 +1,9 @@ package com.dg.controller; public class DgController { + + public static void main(String[] args) { + System.out.println("Inside main method of DgController"); + } } From 4ae4bbd5c6bdb15c7de33517feb91861e3dc62e8 Mon Sep 17 00:00:00 2001 From: raghu Date: Wed, 14 Jul 2021 00:51:50 -0400 Subject: [PATCH 10/12] Updated DgController --- src/com/dg/controller/DgController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/dg/controller/DgController.java b/src/com/dg/controller/DgController.java index 558e86c..154cd01 100644 --- a/src/com/dg/controller/DgController.java +++ b/src/com/dg/controller/DgController.java @@ -4,6 +4,7 @@ public class DgController { public static void main(String[] args) { System.out.println("Inside main method of DgController"); + } } From d186064baa1703fdc25c4a5ea552aa8657f0abc6 Mon Sep 17 00:00:00 2001 From: gadipallir Date: Wed, 14 Jul 2021 00:52:41 -0400 Subject: [PATCH 11/12] Update DgController.java --- src/com/dg/controller/DgController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/dg/controller/DgController.java b/src/com/dg/controller/DgController.java index 154cd01..7465973 100644 --- a/src/com/dg/controller/DgController.java +++ b/src/com/dg/controller/DgController.java @@ -4,7 +4,7 @@ public class DgController { public static void main(String[] args) { System.out.println("Inside main method of DgController"); - + System.out.println("Date = "+new Date()); } } From 2d2a66e4d6a317bb871f43241b3176de2e77d1b5 Mon Sep 17 00:00:00 2001 From: raghu Date: Wed, 14 Jul 2021 00:55:15 -0400 Subject: [PATCH 12/12] Updated DgController --- src/com/dg/controller/DgController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/dg/controller/DgController.java b/src/com/dg/controller/DgController.java index 7465973..8ce1007 100644 --- a/src/com/dg/controller/DgController.java +++ b/src/com/dg/controller/DgController.java @@ -4,7 +4,7 @@ public class DgController { public static void main(String[] args) { System.out.println("Inside main method of DgController"); - System.out.println("Date = "+new Date()); + System.out.println("Date = "+new java.util.Date()); } }