1 // You can redistribute this software and/or modify it under the terms of 2 // the Ozone Core License version 1 published by ozone-db.org. 3 // 4 // The original code and portions created by Thorsten Fiebig are 5 // Copyright (C) 2000-@year@ by Thorsten Fiebig. All rights reserved. 6 // Code portions created by SMB are 7 // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved. 8 // 9 // $Id: OO7_DesignObject.java,v 1.2 2000/10/28 16:55:26 daniela Exp $ 10 11 import org.ozoneDB.OzoneRemote; 12 13 14 public interface OO7_DesignObject extends OzoneRemote { 15 16 17 public void setId( long x ); 18 19 20 public long id(); 21 22 23 public void setType( String x ); 24 25 26 public String type(); 27 28 29 public void setBuildDate( long x ); 30 31 32 public long buildDate(); 33 } 34