⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recordinginfo.java

📁 ejb20_src_relationships.rar
💻 JAVA
字号:
package examples.ejb20.relationships.bands;

import java.io.Serializable;
import java.sql.Date;

import weblogic.utils.Debug;

/**
 * @author Copyright (c) 2003 by BEA Systems. All Rights Reserved.
 */

public final class RecordingInfo implements Serializable {

  private String title;
  private String band;
  private String founder;
  private Date recDate;

  public RecordingInfo() {}

  public RecordingInfo(String t, String b, String f, Date rd) {
    title   = t;
    band    = b;
    founder = f;
    recDate = rd;
  }

  public String getTitle() { return title; }
  public void setTitle(String t) { title = t; }

  public String getBand() { return band; }
  public void setBand(String b) { band = b; }

  public String getFounder() { return founder; }
  public void setFounder(String f) { founder = f; }

  public Date getRecordingDate() { return recDate; }
  public void setRecordingDate(Date d) { recDate = d; }

  public String toString() {

    return "Recording: Title: "+title + 
      " Band: " + band + " Recording Date: "+recDate;


  }
  

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -