ad.java

来自「Java企业级开发项目实践,这是他的附光盘」· Java 代码 · 共 32 行

JAVA
32
字号
//---------------------------------------------------------
// Application: eShop of Network
// Author     : eSingle
// File       : Ad.java
//
// Copyright 2002 LandSoft Corp.
// Generated at Mon Nov 18 21:48:18 CST 2002
// Created by caoguangxin
// mailto:gxcao@mail.tsinghua.edu.cn
//---------------------------------------------------------

package com.landsoft.eshop.model;

public class Ad {
  private String content;
  private String title;

  public String getContent() {
    return content;
  }
  public String getTitle() {
    return title;
  }

  public void setContent(String content) {
    this.content = content;
  }
  public void setTitle(String title) {
    this.title = title;
  }
}

⌨️ 快捷键说明

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