httpconnection.java

来自「一个非常绚丽的j2em徒刑库」· Java 代码 · 共 179 行

JAVA
179
字号
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   HTTPConnection.java

package com.tricastmedia.twuik.tas.io;

import java.io.IOException;

// Referenced classes of package com.tricastmedia.twuik.tas.io:
//            GenericConnection, Response, ITime, Header, 
//            IConnectionListener, PostData

public class HTTPConnection extends GenericConnection
    implements ITime
{

    public HTTPConnection(int p0)
    {
        response = (Response)null;
    }

    public HTTPConnection(int p0, int p1)
    {
        response = (Response)null;
    }

    public HTTPConnection(int p0, Object p1)
    {
        response = (Response)null;
    }

    public HTTPConnection(int p0, Object p1, int p2)
    {
        response = (Response)null;
    }

    public HTTPConnection()
    {
        response = (Response)null;
    }

    public boolean isFlush()
    {
        return false;
    }

    public void doGet(String p0, Header p1[])
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doGet(String p0, Header p1[], Header p2[], boolean p3)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doGet(String p0, Header p1[], Header p2[])
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doGet(String p0, Header p1[], Header p2[], IConnectionListener p3, boolean p4)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doGet(String p0, Header p1[], Header p2[], IConnectionListener p3)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doGet(String p0)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, boolean p1)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, Header p1[], boolean p2)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, Header p1[])
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, IConnectionListener p1, Object p2, PostData p3)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, Header p1[], IConnectionListener p2, Object p3)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, Header p1[], IConnectionListener p2, Object p3, boolean p4)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, Header p1[], IConnectionListener p2)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void doPost(String p0, Header p1[], IConnectionListener p2, boolean p3)
        throws IOException
    {
        IOException exc0 = null;
    }

    public void wakeUp()
    {
    }

    public void setUrl(String s)
    {
    }

    public String getUrl()
    {
        return null;
    }

    public void setTimerDuration(long l)
    {
    }

    public long getTimerDuration()
    {
        return 0L;
    }

    public void setIdentifierObject(Object obj)
    {
    }

    public Object getIdentifierObject()
    {
        return null;
    }

    public void setIsFlush(boolean flag)
    {
    }

    public void execute()
    {
    }

    public final Response response;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?