Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ build/

xcuserdata
.redcar
/bin/
2 changes: 1 addition & 1 deletion CashReegister/AppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

// comment added
@end
2 changes: 1 addition & 1 deletion CashReegister/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions CashReegister/CashReegister-Prefix.pch
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
#endif

#ifdef __OBJC__

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>

#endif
3 changes: 3 additions & 0 deletions CashReegister/ViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

#import <UIKit/UIKit.h>


@interface ViewController : UIViewController

@property (weak, nonatomic) IBOutlet UILabel *launchURLLabel;

@end
2 changes: 2 additions & 0 deletions CashReegister/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

@interface ViewController ()

// add a paintingView here.

@end

@implementation ViewController
Expand Down
2 changes: 2 additions & 0 deletions CashReegister/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
int main(int argc, char *argv[])
{
@autoreleasepool {

return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

}
}
10 changes: 10 additions & 0 deletions src/com/dg/controller/DgController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.dg.controller;

public class DgController {

public static void main(String[] args) {
System.out.println("Inside main method of DgController");
System.out.println("Date = "+new java.util.Date());
}

}