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

📄 deduction.java

📁 这是一个java编写的程序
💻 JAVA
字号:
/** * Example Mapper Application * by: Marty Phelan * * This example is free software; you can redistribute it and/or * modify it as you wish.  It is released to the public domain. * * This example is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */package com.taursys.examples.simpleweb.delegate;/** * ValueObject for a Deduction. */public class Deduction {  private java.math.BigDecimal amount;  /**   * Constructs a new empty Deduction   */  public Deduction() {  }  /**   * Get the amount of this deduction   */  public java.math.BigDecimal getAmount() {    return amount;  }  /**   * Set the amount of this deduction   */  public void setAmount(java.math.BigDecimal newAmount) {    amount = newAmount;  }}

⌨️ 快捷键说明

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