代码搜索结果
找到约 322,615 项符合
Interface 的代码
thirdinf.java
public interface ThirdInf
{
public int value =21;
public void methodOne();
}
stacksimpleadt.java
public interface StackSimpleADT
{
boolean isEmpty();
void push(Object g);
void pop();
Object top();
}
accountsimpleadt.java
public interface AccountSimpleADT
{
String owner();
float balance();
float lineOfCredit();
void deposit(float amount);
void withdraw(float amount);
voi
simplelist.java
package simple;
/** A simple list interface with methods to access, insert, and delete
items at the front of the list. It also has a test for an empty
list and a wipeOut method. */
public
simplelist.java
package simple;
/** A simple list interface with methods to access, insert, and delete
items at the front of the list. It also has a test for an empty
list and a wipeOut method. */
public
interfacebuilder.java
package Commands;
import Interfaces.*;
/** Build the correct interface for the person logging in. */
public class InterfaceBuilder
{
/** An interface corresponding to the login id.
Analy
interface.java
package Interfaces;
import java.io.*;
/** A general user interface. */
public class Interface
{
/** Get the user's login id number. */
public int getLoginID()
{
System.out.print("Ente
readme
These files already are in 'rtl/systemc'.
The 'usb_ocp_test.cpp' file is the USB1.1 with OCP Interface test.
The 'usb_8051_test.cpp' file is the USB1.1 with 8051 Interface test (incomplete).
See http
usbf_utmi_if.v
/////////////////////////////////////////////////////////////////////
//// ////
//// UTMI Interface
sipclientconnectionlistener.java
package com.micromethod.sipstack.i;
public interface SipClientConnectionListener {
public abstract void notifyResponse(SipClientConnection sipclientconnection);
}