KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > OO7_AtomicPart


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_AtomicPart.java,v 1.1 2001/12/17 17:45:08 per_nyfelt Exp $
10

11 import org.ozoneDB.DxLib.*;
12
13
14 public interface OO7_AtomicPart extends OO7_DesignObject {
15     
16     
17     public void setX( long x );
18     
19     
20     public long x();
21     
22     
23     public void setY( long y );
24     
25     
26     public long y();
27     
28     
29     public void setDocId( long y );
30     
31     
32     public long docId();
33     
34     
35     public void addTo( OO7_Connection x );
36     
37     
38     public DxBag to();
39     
40     
41     public void addFrom( OO7_Connection x );
42     
43     
44     public DxBag from();
45     
46     
47     public void setPartOf( OO7_CompositePart x );
48     
49     
50     public OO7_CompositePart partOf();
51     
52 }
53
Popular Tags