1/*
2 *  Licensed to the Apache Software Foundation (ASF) under one or more
3 *  contributor license agreements.  See the NOTICE file distributed with
4 *  this work for additional information regarding copyright ownership.
5 *  The ASF licenses this file to You under the Apache License, Version 2.0
6 *  (the "License"); you may not use this file except in compliance with
7 *  the License.  You may obtain a copy of the License at
8 *
9 *     http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *  Unless required by applicable law or agreed to in writing, software
12 *  distributed under the License is distributed on an "AS IS" BASIS,
13 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 *  See the License for the specific language governing permissions and
15 *  limitations under the License.
16 */
17
18package org.apache.harmony.nio.tests.java.nio.channels;
19
20import java.io.IOException;
21import java.net.Socket;
22import java.net.SocketAddress;
23import java.nio.ByteBuffer;
24import java.nio.channels.SocketChannel;
25import java.nio.channels.spi.SelectorProvider;
26
27class MockSocketChannel extends SocketChannel {
28
29    protected MockSocketChannel(SelectorProvider arg0) {
30        super(arg0);
31    }
32
33    public Socket socket() {
34        return null;
35    }
36
37    public boolean isConnected() {
38        return false;
39    }
40
41    public boolean isConnectionPending() {
42        return false;
43    }
44
45    public boolean connect(SocketAddress arg0) throws IOException {
46        return false;
47    }
48
49    public boolean finishConnect() throws IOException {
50        return false;
51    }
52
53    public int read(ByteBuffer arg0) throws IOException {
54        return 0;
55    }
56
57    public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
58        return 0;
59    }
60
61    public int write(ByteBuffer arg0) throws IOException {
62        return 0;
63    }
64
65    public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
66        return 0;
67    }
68
69    protected void implCloseSelectableChannel() throws IOException {
70    }
71
72    protected void implConfigureBlocking(boolean arg0) throws IOException {
73    }
74
75}
76