Java的面向对象数据库系统的源代码

源代码在线查看: auto.java

软件大小: 14235 K
上传用户: fansino
关键词: Java 对象 数据库系统 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				// $Id: Auto.java,v 1.4 2001/02/13 19:22:35 daniela Exp $								import org.ozoneDB.*;												public interface Auto extends OzoneRemote {				    				    public void print();				    				    public void setName( String newName );				    				    public String name();				    				    public void setAge( Integer newAge ) throws Exception;				    				    public int setAge( int newAge ) throws Exception;				    				    public Integer age() throws Exception;				    				    public Auto doSomthing( Auto auto ) throws Exception;				    				    public void crash() throws Exception;				}							

相关资源