AnalysisBean.java :  » Portal » Open-Portal » com » sun » portal » admin » console » search » Java Open Source

Java Open Source » Portal » Open Portal 
Open Portal » com » sun » portal » admin » console » search » AnalysisBean.java
/**
 * Copyright 2005 Sun Microsystems, Inc. All
 * rights reserved. Use of this product is subject
 * to license terms. Federal Acquisitions:
 * Commercial Software -- Government Users
 * Subject to Standard License Terms and
 * Conditions.
 *
 * Sun, Sun Microsystems, the Sun logo, and Sun ONE
 * are trademarks or registered trademarks of Sun Microsystems,
 * Inc. in the United States and other countries.
 */
package com.sun.portal.admin.console.search;

public class AnalysisBean {
    
    public String total = "";
    public String item = "";

    public void initialize(String total, String item) {
        this.total = total;
        this.item = item;
    }
    
    public String getTotal() {
        return total;
    }
    
    public void setTotal(String total) {
        this.total = total;
    }
    
    public String getItem() {
        return item;
    }
    
    public void setItem(String item) {
        this.item = item;
    }
    
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.