source: trunk/org/expeditee/agents/ClipboardTree.java@ 4

Last change on this file since 4 was 4, checked in by davidb, 16 years ago

Starting source code to Expeditee

File size: 393 bytes
Line 
1package org.expeditee.agents;
2
3/**
4 * Writes the Tree of Frames, starting from the given Frame, to the Clipboard.
5 * Currently only Text output is supported, all other items are ignored.
6 *
7 * @author jdm18
8 *
9 */
10public class ClipboardTree extends WriteTree {
11
12 public ClipboardTree() {
13 super("clipboard");
14 }
15
16 public ClipboardTree(String format) {
17 super(format + " clipboard");
18 }
19
20}
Note: See TracBrowser for help on using the repository browser.