代码搜索结果
找到约 10,000 项符合
Interface 的代码
qcam.h
/*
* Connectix QuickCam parallel-port camera video capture driver.
* Copyright (c) 1996, Paul Traina.
*
* This driver is based in part on work
* Copyright (c) 1996, Thomas Davis.
*
* QuickCam(T
requirement023.tex
\subsection{023: standard crypto api to add newer ciphers and hashes}
\subsubsection{023: Definition of requirement }
The current KLIPS1 encapsulation and decapsulation routines make explicit
synchr
product.java
package com.javapatterns.simplefactory;
public interface Product
{
}
product.java
package com.javapatterns.factorymethod;
public interface Product
{
}
producta.java
package com.javapatterns.abstractfactory;
public interface ProductA
{
}
productb.java
package com.javapatterns.abstractfactory;
public interface ProductB
{
}
shape.java
// Fig. 27.5: Shape.java
// Definition of interface Shape
public interface Shape {
public abstract double area();
public abstract double volume();
public abstract String getName();
alarmlistener.java
package system;
/**
* The AlarmListener interface is used by the users of
* the AlarmClock interface. If a class wishes to be notified
* using the AlarmClock, the class will have to implem
command.java
public interface Command
{
public void execute() throws Exception;
}
privatemethodaccessor.java
public interface PrivateMethodAccessor
{
public void private_f();
}