dealerremote.java

来自「This project mainly deals with automatin」· Java 代码 · 共 27 行

JAVA
27
字号

package packIC;

import java.rmi.*;
import javax.ejb.*;

public interface DealerRemote extends EJBObject
{

	
	public void setSno(int sno ) throws RemoteException;
	public int getSno() throws RemoteException;
	public void setDealerno(int dealerno ) throws RemoteException;
	public int getDealerno() throws RemoteException;
	public void setDealername(String dealername) throws RemoteException;
	public String getDealername() throws RemoteException;
        public void setAddress(String address) throws RemoteException;
	public String getAddress() throws RemoteException;
       	public void setPhone(int phone ) throws RemoteException;
	public int getPhone() throws RemoteException;
        public void setCategory(String category) throws RemoteException;
	public String getCategory() throws RemoteException;
       	public void setCreditlimit(int creditlimit ) throws RemoteException;
	public int getCreditlimit() throws RemoteException;
        
	
}

⌨️ 快捷键说明

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