( XStream xStream )
| 612 | } |
| 613 | |
| 614 | public XInputStream getInputStream( XStream xStream ) |
| 615 | { |
| 616 | XInputStream xInTemp = null; |
| 617 | try |
| 618 | { |
| 619 | xInTemp = xStream.getInputStream(); |
| 620 | if ( xInTemp == null ) |
| 621 | Error( "Can't get the input part of a stream!" ); |
| 622 | } |
| 623 | catch ( Exception e ) |
| 624 | { |
| 625 | Error( "Can't get the input part of a stream, exception :" + e ); |
| 626 | } |
| 627 | |
| 628 | return xInTemp; |
| 629 | } |
| 630 | |
| 631 | public boolean closeOutput( XStream xStream ) |
| 632 | { |
no test coverage detected