List of usage examples for java.awt.datatransfer ClipboardOwner interface-usage
From source file ClipboardTest.java
/** Taken from the Sun documentation on Clipboard API */ public class ClipboardTest extends Frame implements ClipboardOwner, ActionListener { TextArea srcText, dstText; Button copyButton, pasteButton;
From source file Samples.Advanced.GraphEditorDemo.java
/**
* Shows how to create a graph editor with JUNG.
* Mouse modes and actions are explained in the help text.
* The application version of GraphEditorDemo provides a
* File menu with an option to save the visible graph as
* a jpeg file.
From source file ec.ui.view.RevisionSaSeriesView.java
/** * View of the Revision History of a serie. * * @author Mats Maggi */ public class RevisionSaSeriesView extends ATsView implements ClipboardOwner {
From source file CutAndPasteDemo.java
public class CutAndPasteDemo extends JFrame implements ClipboardOwner { private static String TEMPFILE = "CUTPASTE.TMP"; String davidMessage = "David says, \"\u05E9\u05DC\u05D5\u05DD" + "\u05E2\u05D5\u05DC\u05DD\" \n"; String andyMessage = "Andy also says, \"\u05E9\u05DC\u05D5\u05DD" + "\u05E2\u05D5\u05DC\u05DD\"";
From source file SciTK.Plot.java
/** A class which uses Java swing to make a generic window for JFreeChart plots.
* Implement somes generic UI and useful methods. Various types of plots should extend this class
*
* @package SciTK
* @class Plot
* @brief Implement a generic plot window
From source file edu.uchc.octane.OctaneWindowControl.java
/** * Controller of the the octane window. */ public class OctaneWindowControl implements ClipboardOwner { final private static String SHOW_OVERLAY_KEY = "ShowOverlay";
From source file gdt.jgui.entity.folder.JFolderPanel.java
/**
* This class provides the folder functionality.
* It displays the folder's content and the context menu
* for basic operations with folder's files.
* @author imasa.
*
From source file biz.wolschon.finance.jgnucash.accountProperties.AccountProperties.java
/**
* (c) 2009 by <a href="http://Wolschon.biz>Wolschon Softwaredesign und Beratung</a>.<br/>
* Project: jgnucashLib-GPL<br/>
* AccountProperties<br/>
* created: 19.06.2009 <br/>
*<br/><br/>
From source file cz.muni.fi.pv168.MainForm.java
public class MainForm extends javax.swing.JFrame implements ClipboardOwner { private DataSource prepareDataSource() { /* * BasicDataSource ds = new BasicDataSource(); Properties properties = * new Properties(); FileInputStream in = null; try { in = new
From source file gdt.jgui.entity.webset.JWeblinkEditor.java
/** * This class represents the web link editor context. * @author imasa * */ public class JWeblinkEditor extends JPanel implements JFacetRenderer, JRequester, ClipboardOwner {