代码搜索结果
找到约 10,000 项符合
Interface 的代码
exceptionlistener.java
public interface ExceptionListener {
public void exceptionOccurred(Exception x, Object source);
}
constantpool.doc.html
VM Spec Loading, Linking, and Initializing
myobject.java
package remotecontrol;
public interface MyObject{
public byte[] request();
public MyObject response();
}
setup.htm
User Management Setup
count.idl
module Counter
{
interface Count
{
attribute long sum;
long increment();
};
};
contents.m
% QFT Control Design Toolbox.
% Version 1.0.3 (R11) 21-Nov-1997
%
% Specialized X-Y Graphs.
% plotbnds - Nichols plot of bounds.
% plottmpl - Nichols plot of templates.
%
% Bound Computat
desc.h
unsigned char DEV_DESC[]=
{ 18, /*Device Descriptor length*/
1, /*Decriptor type*/
0x00, /*0x0001 is Specification Version (BCD)即符合USB1.0标准*/
0x01,
0x00, /*Device class*/
0x00, /*Device s
factory.java
//: typeinfo/factory/Factory.java
package typeinfo.factory;
public interface Factory { T create(); } ///:~
null.java
//: net/mindview/util/Null.java
package net.mindview.util;
public interface Null {} ///:~
performs.java
//: generics/Performs.java
public interface Performs {
void speak();
void sit();
} ///:~