KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > util > NonPortableDetail


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.util;
5
6 import java.io.Serializable JavaDoc;
7
8 public class NonPortableDetail implements Serializable JavaDoc {
9   private final String JavaDoc label;
10   private final String JavaDoc value;
11
12   public NonPortableDetail(String JavaDoc label, String JavaDoc value) {
13     this.label = label;
14     this.value = value;
15   }
16   
17   public String JavaDoc getLabel() {
18     return label;
19   }
20   
21   public String JavaDoc getValue() {
22     return value;
23   }
24 }
25
Popular Tags