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

📄 probag.java

📁 基于面向对象的数据库编程
💻 JAVA
字号:
package helper;

import java.util.*;

/**
 * <p>Title: Broundary Rrepresentaion</p>
 * <p>Description: 这是一个用来封装参数的辅助类</p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: USTC</p>
 * @author unascribed
 * @version 1.0
 */

public class ProBag {

  private double length;
  private double width;
  private double high;
  private double radius;

  public ProBag() {
  }

  public void setLength(double length) {
    this.length = length;
  }

  public double getLength() {
    return length;
  }

  public void setWidth(double width) {
    this.width = width;
  }

  public double getWidth() {
    return width;
  }

  public void setHigh(double high) {
    this.high = high;
  }

  public double getHigh() {
    return high;
  }

  public void setRadius(double radius) {
    this.radius = radius;
  }

  public double getRadius() {
    return radius;
  }

}

⌨️ 快捷键说明

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