Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
EditorLayout |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright (c) 2009, Swiss Federal Department of Defence Civil Protection and Sport | |
3 | * (http://www.vbs.admin.ch) | |
4 | * Copyright (c) 2009, Ergon Informatik AG (http://www.ergon.ch) | |
5 | * All rights reserved. | |
6 | * | |
7 | * Licensed under the Open Permis License which accompanies this distribution, | |
8 | * and is available at http://www.openpermis.org/BSDlicenceKent.txt | |
9 | */ | |
10 | package org.openpermis.editor.policy.gui.dock; | |
11 | ||
12 | import java.io.DataInputStream; | |
13 | import java.io.DataOutputStream; | |
14 | import java.io.IOException; | |
15 | ||
16 | import bibliothek.gui.dock.common.MultipleCDockableLayout; | |
17 | import bibliothek.util.xml.XElement; | |
18 | ||
19 | /** | |
20 | * Layout for editor dockables. | |
21 | * <p>At the moment no layout information is stored.</p> | |
22 | * @since 0.1.0 | |
23 | */ | |
24 | 0 | public class EditorLayout |
25 | implements MultipleCDockableLayout | |
26 | { | |
27 | ||
28 | //---- MultipleCDockableLayout | |
29 | ||
30 | /** | |
31 | * @since 0.1.0 | |
32 | */ | |
33 | public void readStream (DataInputStream in) throws IOException { | |
34 | // Nop. | |
35 | 0 | } |
36 | ||
37 | /** | |
38 | * @since 0.1.0 | |
39 | */ | |
40 | public void readXML (XElement element) { | |
41 | // Nop. | |
42 | 0 | } |
43 | ||
44 | /** | |
45 | * @since 0.1.0 | |
46 | */ | |
47 | public void writeStream (DataOutputStream out) throws IOException { | |
48 | // Nop. | |
49 | 0 | } |
50 | ||
51 | /** | |
52 | * @since 0.1.0 | |
53 | */ | |
54 | public void writeXML (XElement element) { | |
55 | // Nop. | |
56 | 0 | } |
57 | ||
58 | } |