|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| ObjectOrdering.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | // Copyright 2004, 2005 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 its 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 | 82 | ObjectOrdering(Object object, String name, String prereqs, String postreqs) |
| 31 | { | |
| 32 | 82 | _object = object; |
| 33 | 82 | _name = name; |
| 34 | 82 | _prereqs = prereqs; |
| 35 | 82 | _postreqs = postreqs; |
| 36 | } | |
| 37 | ||
| 38 | 172 | public String getName() |
| 39 | { | |
| 40 | 172 | return _name; |
| 41 | } | |
| 42 | ||
| 43 | 91 | public Object getObject() |
| 44 | { | |
| 45 | 91 | return _object; |
| 46 | } | |
| 47 | ||
| 48 | 164 | public String getPostreqs() |
| 49 | { | |
| 50 | 164 | return _postreqs; |
| 51 | } | |
| 52 | ||
| 53 | 164 | public String getPrereqs() |
| 54 | { | |
| 55 | 164 | return _prereqs; |
| 56 | } | |
| 57 | ||
| 58 | } |
|
||||||||||