SquirrelJME/SquirrelJME

View on GitHub
modules/gcf/src/main/java/javax/microedition/io/AccessPointListener.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package javax.microedition.io;

import cc.squirreljme.runtime.cldc.annotation.Api;
import java.util.EventListener;

@Api
public interface AccessPointListener
    extends EventListener
{
    @Api
    int EVENT_TYPE_CONNECTED =
        0;
    
    @Api
    int EVENT_TYPE_DISCONNECTED =
        1;
    
    @Api
    int EVENT_TYPE_REMOVED =
        2;
    
    @Api
    void notifyEvent(AccessPoint __a, int __b);
}