public
Description: A buildbot GUI for OS X
Homepage: http://code.google.com/p/buildwatch/
Clone URL: git://github.com/dustin/buildwatch.git
Search Repo:
buildwatch / Builder.h
100644 47 lines (33 sloc) 0.792 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// Builder.h
// BuildWatch
//
// Created by Dustin Sallings on 3/5/08.
// Copyright 2008 Dustin Sallings <dustin@spy.net>. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface Builder : NSObject {
 
    NSString *name;
    NSString *state;
    NSString *step;
    NSString *status;
    int lastBuildResult;
    NSDate *stepeta;
    NSDate *eta;
 
}
 
- (NSString *)name;
- (void)setName:(NSString *)value;
 
- (NSString *)state;
- (void)setState:(NSString *)value;
 
- (NSString *)step;
- (void)setStep:(NSString *)value;
 
- (NSString *)status;
- (void)setStatus:(NSString *)value;
 
- (NSDate *)eta;
- (void)setEta:(NSDate *)value;
 
- (NSDate *)stepeta;
- (void)setStepeta:(NSDate *)value;
 
- (int)lastBuildResult;
- (void)setLastBuildResult:(int)value;
 
- (NSColor *)color;
 
@end