代码搜索结果
找到约 10,000 项符合
Interface 的代码
subject.java
public interface Subject
{
public void registerObserver(Observer o);
public void removeObserver(Observer o);
public void notifyObservers();
}
observer.java
public interface Observer
{
public void update(String operation, String record);
}
state.java
public interface State
{
public String gotApplication();
public String checkApplication();
public String rentApartment();
public String dispenseKeys();
}
ex20(1).java
// generics/Ex20.java
// TIJ4 Chapter Generics, Exercise 20, page 654
/* Create an interface with two methods, and a class that implements that interface
* and adds another method. In another class
readme
This directory contains the following Matlab script files,
which can be invoked in Matlab:
superlu.m Supernodal LU factorization
lusolve.m Solve linear systems by supernodal LU fac
abstract.txt
The HID project is a demo program for the Keil MCB2300
Board using the NXP LPC23xx Microcontroller.
It demonstrates an USB HID (Human Interface Device):
- 8 LEDs (LED0..7)
- 1 Push Buttons (
repeater.java
public abstract interface Repeater
{
public abstract void actionRepeat(int paramInt);
}
driver.h
/*
* WPA Supplicant - driver interface definition
* Copyright (c) 2003-2005, Jouni Malinen
*
* This program is free software; you can redistribute it and/or modify
* it under the terms
defconfig
# Example wpa_supplicant build time configuration
#
# This file lists the configuration options that are used when building the
# hostapd binary. All lines starting with # are ignored. Configuration o
changelog
ChangeLog for wpa_supplicant
2008-02-23 - v0.4.11
* updated driver_madwifi to work with changes in madwifi-ng
* fixed EAP-AKA Notification processing to allow Notification to be
processed after