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 Nguyen9 * @email: tuan08@users.sourceforge.net10 * @version: $Id: SelectItem.java,v 1.2 2004/08/11 02:22:16 tuan08 Exp $11 */12 public class SelectItem {13 public String display_ ;14 public String value_ ;15 16 public SelectItem(String display, String value) {17 display_ = display ;18 value_ = value ;19 }20 }