KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > beehive > netui > tools > testrecorder > shared > NVPair


1 /*
2  * Copyright 2004 The Apache Software Foundation.
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  *
16  * $Header:$
17  */

18
19 package org.apache.beehive.netui.tools.testrecorder.shared;
20
21 /**
22  * User: ozzy
23  * Date: Jun 15, 2004
24  * Time: 9:48:04 AM
25  */

26
27 public class NVPair {
28
29     private String JavaDoc name;
30     private String JavaDoc value;
31
32     public NVPair( String JavaDoc name, String JavaDoc value ) {
33         if ( name == null || value == null ) {
34             throw new RuntimeException JavaDoc( "name( " + name + " ) and value( " + value + " ) must not be null." );
35         }
36         this.name = name;
37         this.value = value;
38     }
39
40     public String JavaDoc getName() {
41         return name;
42     }
43
44     public String JavaDoc getValue() {
45         return value;
46     }
47
48     public boolean equals( Object JavaDoc object ) {
49         if ( this == object ) {
50             return true;
51         }
52         else if ( object == null || getClass() != object.getClass() ) {
53             return false;
54         }
55         NVPair other = (NVPair) object;
56         if ( this.getName().equals( other.getName() ) && this.getValue().equals( other.getValue() ) ) {
57             return true;
58         }
59         return false;
60     }
61
62     public String JavaDoc toString () {
63         return "name( " + name + " ), value( " + value + " )";
64     }
65 }
66
Popular Tags