Subversion Repositories DevTools

Rev

Rev 7023 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7023 Rev 7032
Line 1... Line 1...
1
package com.erggroup.buildtool.ripple;
1
package com.erggroup.buildtool.ripple;
2
 
2
 
3
/**
3
/**
4
 * Class to conatin information on Daemon Instructions as we iterarte over them
4
 * Class to contain information on Daemon Instructions as we iterate over them
5
 * 
5
 * 
6
 */
6
 */
7
    public class DaemonInstruction {
7
    public class DaemonInstruction {
8
        // fixed for the duration of the scan
8
        // fixed for the duration of the scan
9
        final int rtag_id;
9
        final int rtag_id;
Line 29... Line 29...
29
            this.opCode = opCode;
29
            this.opCode = opCode;
30
            this.expired = bExpired;
30
            this.expired = bExpired;
31
            this.instruction = 0;
31
            this.instruction = 0;
32
        }
32
        }
33
    }
33
    }
34
    
-
 
35
    //public static final DaemonInstruction NULL_INSTRUCTION = new DaemonInstruction(-1,-1,true);
-
 
36
 
-