source: trunk/src/org/expeditee/agents/ClipboardTree.java@ 185

Last change on this file since 185 was 80, checked in by ra33, 16 years ago

Added some more unit tests
Did a bunch of refactoring
AND added a few new features... @b @v were the most significant

File size: 394 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 public ClipboardTree() {
12 super(CLIPBOARD);
13 }
14
15 public ClipboardTree(String format) {
16 super(format + " " + CLIPBOARD);
17 }
18
19}
Note: See TracBrowser for help on using the repository browser.