KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > text > template > xhtml > Parameter


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.text.template.xhtml;
6
7 /**
8  * Wed, Dec 22, 2003 @ 23:14
9  * @author: Tuan Nguyen
10  * @email: tuan08@users.sourceforge.net
11  * @version: $Id: Parameter.java,v 1.1 2004/04/07 21:41:20 tuan08 Exp $
12  */

13 public class Parameter {
14   protected String JavaDoc name_ ;
15   protected String JavaDoc value_ ;
16
17   public Parameter(String JavaDoc name, String JavaDoc value) {
18     name_ = name ;
19     value_ = value ;
20   }
21   
22   public String JavaDoc getName() { return name_ ; }
23   public void setName(String JavaDoc name) { name_ = name ; }
24
25   public String JavaDoc getValue() { return value_ ; }
26   public void setValue(String JavaDoc s) { value_ = s ; }
27 }
28
Popular Tags