001: /*
002: * Copyright (c) JForum Team
003: * All rights reserved.
004:
005: * Redistribution and use in source and binary forms,
006: * with or without modification, are permitted provided
007: * that the following conditions are met:
008:
009: * 1) Redistributions of source code must retain the above
010: * copyright notice, this list of conditions and the
011: * following disclaimer.
012: * 2) Redistributions in binary form must reproduce the
013: * above copyright notice, this list of conditions and
014: * the following disclaimer in the documentation and/or
015: * other materials provided with the distribution.
016: * 3) Neither the name of "Rafael Steil" nor
017: * the names of its contributors may be used to endorse
018: * or promote products derived from this software without
019: * specific prior written permission.
020: *
021: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
022: * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
023: * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
024: * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
025: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
026: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
027: * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
028: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
029: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
030: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
031: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
032: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
033: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
034: * IN CONTRACT, STRICT LIABILITY, OR TORT
035: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
036: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
037: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
038: *
039: * This file creation date: 10/10/2003 / 22:16:27
040: * net.jforum.util.FormSelectedData.java
041: * The JForum project
042: * http://www.jforum.net
043: *
044: * $Id: FormSelectedData.java,v 1.5 2006/08/23 02:13:44 rafaelsteil Exp $
045: */
046: package net.jforum.util;
047:
048: /**
049: * @author Rafael Steil
050: */
051: public class FormSelectedData {
052: /**
053: * Nome do campo ( descricao textual )
054: * */
055: private String name;
056:
057: /**
058: * ID relacionada com o campo
059: * */
060: private String id;
061:
062: /**
063: * Para verificar se o campo deve ser marcado como selecionado
064: * */
065: private boolean selected;
066:
067: /**
068: * @param name Nome do campo
069: * @param id ID relacionado com o campo
070: * @param selected <code>true</code> ou <code>false</code>, com base no status desejado
071: * */
072: public FormSelectedData(String name, String id, boolean selected) {
073: this .name = name;
074: this .id = id;
075: this .selected = selected;
076: }
077:
078: /**
079: * Pega o nome do campo.
080: *
081: * @return String contendo o nome do campo
082: * */
083: public String getName() {
084: return this .name;
085: }
086:
087: /**
088: * Pega o ID do campo.
089: *
090: * @return String contendo o ID do campo
091: * */
092: public String getId() {
093: return this .id;
094: }
095:
096: /**
097: * Pega o status do campo.
098: *
099: * @param selected <code>true</code> ou <code>false</code>, com base no status
100: * */
101: public boolean getSelected() {
102: return this.selected;
103: }
104: }
|