151152153154155156157158159
{ selection_.marshall( stream ); } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } return stream.toByteArray(); }
164165166167168169170171
{ selection_.unmarshall( new ByteArrayInputStream( state ) ); } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } }
180181182183184185186187188
{ selection_.write( stream ); } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } data_ = stream.toByteArray(); }
196197198199200201202203
{ selection_.read( new ByteArrayInputStream( data_ ) ); } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } }
6869707172737475
{ manager_.copy(); } catch( IOException e ) { throw new ChainedException( e ); } }
{ manager_.paste(); } catch( IOException e ) { throw new ChainedException( e ); } }
7475767778798081
{ selection_.paste( stream_ ); } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } }
100101102103104105106107
selection_.paste( stream_ ); return true; } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } }
{ manager_.cut(); } catch( IOException e ) { throw new ChainedException( e ); } }
{ selection_.cut( stream_ ); } catch( IOException e ) { throw new ChainedException( e ); // FIXME custom exception } }