ChangeListTitleAction.java :  » ERP-CRM-Financial » OpenXava-3.0 » org » openxava » test » actions » Java Open Source

Java Open Source » ERP CRM Financial » OpenXava 3.0 
OpenXava 3.0 » org » openxava » test » actions » ChangeListTitleAction.java
package org.openxava.test.actions;

import org.openxava.actions.*;
import org.openxava.tab.*;

/**
 * @author Javier Paniza
 */
public class ChangeListTitleAction extends BaseAction {
  
  private String titleId;
  private Tab tab;

  public void execute() throws Exception {
    getTab().setTitleVisible(true);
    getTab().setTitleId(getTitleId());  
  }

  public String getTitleId() {
    return titleId;
  }
  public void setTitleId(String title) {
    this.titleId = title;
  }
  
  public Tab getTab() {
    return tab;
  }
  public void setTab(Tab tab) {
    this.tab = tab;
  }
}
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.