代码搜索结果

找到约 322,615 项符合 Interface 的代码

valueupdatelistener.java

package name.lxm.robot.arch; public interface ValueUpdateListener { public void valueUpdated(); }

testlistener.java

package event; import java.util.EventListener; public interface testListener extends EventListener{ void testAAA(testEvent te); }

readme-firmware

Hi all, we provide 2 firmware versions. The one that is getting built by default provides a Link Layer interface to the CI slots of your DVB card. A sample implementation of a CI library using this

data.pas

unit Data; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Db, MemDS, Ora, DBAccess; type TdmData = class(TDataModule) OraSession: TOraS

systrayaction.java

package openicq.gui; /** * The SysTrayAction interface contains actions for the system * tray. * @author Hansgeorg Schwibbe * @copyright 2004 */ public interface SysTrayAction { /

shortuserinfo.java

package openicq.net; /** * The ShortUserInfo interface contains short user informations * about a user. * @author Hansgeorg Schwibbe * @copyright 2004 */ public interface ShortUserI

vxmiflib.c

/* vxmIfLib.c - interface library to VxM */ /* Copyright 1984-1992 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* modification history -------------------- 01b,23aug92,jcf removed VXM_I

distiflib.c

/* distIfLib.c - global variable definitions for interface adapters (VxFusion)*/ /* Copyright 1999 Wind River Systems, Inc. */ /* modification history -------------------- 01b,24may99,drm added vxf

distifshow.c

/* distIfShow.c - distributed objects interface adapter show routines (VxFusion option) */ /* Copyright 1999-2002 Wind River Systems, Inc. */ /* modification history -------------------- 01g,26oct01

实现多个接口.txt

public interface IWindow { Object GetMenu(); } pubic interface IRestaurant { Object GetMenu(); } public class Giu:IWindow,IRestaurant { Object IWindow.GetMenu(){}//添加接口名称限定 Object