1 22 23 package apollo.jnlp; 24 25 import java.awt.datatransfer.Transferable ; 26 import apollo.*; 27 28 public class JnlpClipboardService implements ClipboardService 29 { 30 javax.jnlp.ClipboardService _delegate; 31 32 public JnlpClipboardService( javax.jnlp.ClipboardService delegate ) 33 { 34 _delegate = delegate; 35 } 36 37 public void setContents( Transferable contents ) 38 { 39 _delegate.setContents( contents ); 40 } 41 42 public Transferable getContents() 43 { 44 return _delegate.getContents(); 45 } 46 } 47 | Popular Tags |