代码搜索:3.5mm接口
找到约 10,000 项符合「3.5mm接口」的源代码
代码结果 10,000
www.eeworm.com/read/453704/1637849
java task.java
package book.thread.pool;
/**
* 定义任务的接口类
*/
public interface Task {
/**
* 执行任务
* @throws Exception 执行过程中可能出现的异常
*/
public void perform() throws Exception;
}
www.eeworm.com/read/452706/1648539
java studentdaohibernate.java
package cn.hxex.exam.dao.hibernate;
import cn.hxex.exam.dao.StudentDAO;
import cn.hxex.exam.model.Student;
/**
* StudentDAO接口的实现类
*
* @author galaxy
*
*/
public class StudentDAOHibe
www.eeworm.com/read/452706/1648546
java classesdao.java
package cn.hxex.exam.dao;
import java.util.List;
import cn.hxex.exam.model.Classes;
/**
* 用于操作班级的ClassesDAO接口
*
* @author galaxy
*
*/
public interface ClassesDAO
extends Gen
www.eeworm.com/read/451405/1661689
java ibusiness.java
package com.bu.opt;
import java.util.Vector;
/**
* 业务访问层接口
* */
public interface IBusiness {
/**
* 保存数据
* @param Object,通常为实体对象
* @return boolean
* */
public boolean save(Ob
www.eeworm.com/read/249104/4456603
java winimp.java
package imageprocess;
//定义在Window下的图象实现类,实现ImageImp接口:
public class WinImp implements ImageImp {
public void DoPaint(String str) {
System.out.println(str+" at WinOS");
}
}
www.eeworm.com/read/249104/4456606
java~3~ winimp.java~3~
package imageprocess;
//定义在Window下的图象实现类,实现ImageImp接口:
public class WinImp implements ImageImp {
public void DoPaint(String str) {
System.out.println(str+" at WinOS");
}
}
www.eeworm.com/read/249104/4457281
cs class1.cs
using System;
using System.Collections;
//中介者接口
interface IChatroom
{
void Register( Participant participant );
void Send( string from, string to, string message );
}
//具体中介者-聊天室类
class Cha
www.eeworm.com/read/248746/4464556
java timefunctionshome.java
//本地接口Home文件
package simpleejb;
import javax.ejb.*;
import java.util.*;
import java.rmi.*;
public interface TimeFunctionsHome extends javax.ejb.EJBHome {
public TimeFunctions create() throws Creat
www.eeworm.com/read/248746/4464576
java studenthome.java
//实现Student的本地Home接口
package enroll.ejb;
import java.util.Collection;
import java.rmi.RemoteException;
import javax.ejb.*;
public interface StudentHome extends EJBHome{
public Student
www.eeworm.com/read/248746/4464579
java enrollhome.java
//实现Enroll的本地接口
package enroll.ejb;
import java.util.*;
import java.rmi.RemoteException;
import javax.ejb.*;
public interface EnrollHome extends EJBHome{
public Enroll create(
Strin