KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > faces > core > component > model > SelectItem


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.faces.core.component.model;
6 /**
7  * Wed, Dec 22, 2003 @ 23:14
8  * @author: Tuan Nguyen
9  * @email: tuan08@users.sourceforge.net
10  * @version: $Id: SelectItem.java,v 1.2 2004/08/11 02:22:16 tuan08 Exp $
11  */

12 public class SelectItem {
13   public String JavaDoc display_ ;
14   public String JavaDoc value_ ;
15
16   public SelectItem(String JavaDoc display, String JavaDoc value) {
17     display_ = display ;
18     value_ = value ;
19   }
20 }
Popular Tags