myitemlocal.java
来自「J2EE 技术 源码 书籍源代码(j2ee编程技术)」· Java 代码 · 共 74 行
JAVA
74 行
/* * Generated by XDoclet - Do not edit! */package com.ejbstudy;/** * Local interface for MyItem. * @lomboz generated */public interface MyItemLocal extends javax.ejb.EJBLocalObject{ /** * Returns the id * @return the id */ public java.lang.String getId( ) ; /** * Sets the id * @param java.lang.String the new id value */ public void setId( java.lang.String id ) ; /** * Returns the supplierid * @return the supplierid */ public java.lang.String getSupplierid( ) ; /** * Sets the supplierid * @param java.lang.String the new supplierid value */ public void setSupplierid( java.lang.String supplierid ) ; /** * Returns the description * @return the description */ public java.lang.String getDescription( ) ; /** * Sets the description * @param java.lang.String the new description value */ public void setDescription( java.lang.String description ) ; /** * Returns the quantity * @return the quantity */ public java.lang.Integer getQuantity( ) ; /** * Sets the quantity * @param java.lang.Integer the new quantity value */ public void setQuantity( java.lang.Integer quantity ) ; /** * Returns the price * @return the price */ public java.lang.Double getPrice( ) ; /** * Sets the price * @param java.lang.Double the new price value */ public void setPrice( java.lang.Double price ) ;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?