KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > OO7_CompositePart


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_CompositePart.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_CompositePart extends OO7_DesignObject {
15     
16     
17     public void setDocumentation( OO7_Document x );
18     
19     
20     public OO7_Document documentation();
21     
22     
23     public void addUsedInPriv( OO7_BaseAssembly x );
24     
25     
26     public DxBag usedInPriv();
27     
28     
29     public void addUsedInShar( OO7_BaseAssembly x );
30     
31     
32     public DxBag usedInShar();
33     
34     
35     public void addPart( OO7_AtomicPart x );
36     
37     
38     public DxBag parts();
39     
40     
41     public void setRootPart( OO7_AtomicPart x );
42     
43     
44     public OO7_AtomicPart rootPart();
45 }
46
Popular Tags