代码搜索结果

找到约 10,000 项符合 Interface 的代码

editable-interface.py

import gtk import gobject class EditableLabel(gtk.Entry, gtk.Editable): def __init__(self, text): gtk.Entry.__init__(self, 100) self.set_text(text) def do_do_delete_text(se

queue_interface.h

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that

core_interface.cpp

/************************************************** DirectDraw接口模块 Author: LittleFish QQ:93663886 E-Mail: kittyfish_1981@yahoo.com.cn Blog: http://blog.csdn.net/kittyfish 真诚的期待你提出改良方法或程

core_interface.h

/************************************************** DirectDraw接口模块 Author: LittleFish QQ:93663886 E-Mail: kittyfish_1981@yahoo.com.cn Blog: http://blog.csdn.net/kittyfish 真诚的期待你提出改良方法或程

user_interface.c

/********************************************************************** * * * Software License Agreement

interface4.java

interface MyInter1{ public void method1(); } interface MyInter2 extends MyInter1{ public void method2(); } public class Interface4 implements MyInter2{ public void method1(){ System.o