/**
* 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;
}
}
|