|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ObjectOrdering.java | - | 100% | 100% | 100% |
|
1 |
// Copyright 2004 The Apache Software Foundation
|
|
2 |
//
|
|
3 |
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4 |
// you may not use this file except in compliance with the License.
|
|
5 |
// You may obtain a copy of the License at
|
|
6 |
//
|
|
7 |
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8 |
//
|
|
9 |
// Unless required by applicable law or agreed to in writing, software
|
|
10 |
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11 |
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12 |
// See the License for the specific language governing permissions and
|
|
13 |
// limitations under the License.
|
|
14 |
|
|
15 |
package org.apache.hivemind.order;
|
|
16 |
|
|
17 |
/**
|
|
18 |
* Used by an {@link org.apache.hivemind.order.Orderer} to organize
|
|
19 |
* a single object and pre- and post-requisites.
|
|
20 |
*
|
|
21 |
* @author Howard Lewis Ship
|
|
22 |
*/
|
|
23 |
class ObjectOrdering
|
|
24 |
{ |
|
25 |
private String _name;
|
|
26 |
private Object _object;
|
|
27 |
private String _prereqs;
|
|
28 |
private String _postreqs;
|
|
29 |
|
|
30 | 73 |
ObjectOrdering(Object object, String name, String prereqs, String postreqs) |
31 |
{ |
|
32 |
|
|
33 | 73 |
_object = object; |
34 | 73 |
_name = name; |
35 | 73 |
_prereqs = prereqs; |
36 | 73 |
_postreqs = postreqs; |
37 |
} |
|
38 |
|
|
39 | 154 |
public String getName()
|
40 |
{ |
|
41 | 154 |
return _name;
|
42 |
|
|
43 |
} |
|
44 | 82 |
public Object getObject()
|
45 |
{ |
|
46 | 82 |
return _object;
|
47 |
} |
|
48 |
|
|
49 | 146 |
public String getPostreqs()
|
50 |
{ |
|
51 | 146 |
return _postreqs;
|
52 |
} |
|
53 |
|
|
54 | 146 |
public String getPrereqs()
|
55 |
{ |
|
56 | 146 |
return _prereqs;
|
57 |
} |
|
58 |
|
|
59 |
} |
|
60 |
|
|