EMMA Coverage Report (generated Fri Aug 21 15:59:46 BST 2009)
[all classes][org.springframework.batch.core.job.flow]

COVERAGE SUMMARY FOR SOURCE FILE [FlowExecution.java]

nameclass, %method, %block, %line, %
FlowExecution.java100% (1/1)80%  (4/5)58%  (21/36)88%  (7/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class FlowExecution100% (1/1)80%  (4/5)58%  (21/36)88%  (7/8)
toString (): String 0%   (0/1)0%   (0/15)0%   (0/1)
FlowExecution (String, FlowExecutionStatus): void 100% (1/1)100% (9/9)100% (4/4)
compareTo (FlowExecution): int 100% (1/1)100% (6/6)100% (1/1)
getName (): String 100% (1/1)100% (3/3)100% (1/1)
getStatus (): FlowExecutionStatus 100% (1/1)100% (3/3)100% (1/1)

1/*
2 * Copyright 2006-2007 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.springframework.batch.core.job.flow;
17 
18 
19/**
20 * @author Dave Syer
21 * @since 2.0
22 */
23public class FlowExecution implements Comparable<FlowExecution> {
24 
25        private final String name;
26        private final FlowExecutionStatus status;
27 
28        /**
29         * @param name
30         * @param status
31         */
32        public FlowExecution(String name, FlowExecutionStatus status) {
33                this.name = name;
34                this.status = status;
35        }
36 
37        /**
38         * @return the name of the end state reached
39         */
40        public String getName() {
41                return name;
42        }
43 
44        /**
45         * @return the FlowExecutionStatus
46         */
47        public FlowExecutionStatus getStatus() {
48                return status;
49        }
50 
51        /**
52         * Create an ordering on {@link FlowExecution} instances by comparing their
53         * statuses.
54         * 
55         * @see Comparable#compareTo(Object)
56         * 
57         * @param other
58         * @return negative, zero or positive as per the contract
59         */
60        public int compareTo(FlowExecution other) {
61                return this.status.compareTo(other.getStatus());
62        }
63 
64        @Override
65        public String toString() {
66                return String.format("FlowExecution: name=%s, status=%s", name, status);
67        }
68 
69}

[all classes][org.springframework.batch.core.job.flow]
EMMA 2.0.5312 (C) Vladimir Roubtsov