代码搜索结果

找到约 322,615 项符合 Interface 的代码

gauge.h

// gauge.h : interface to progress gauge control #ifndef GAUGE_H #define GAUGE_H void ResetGauge(HWND hwnd, WORD full); void SetGauge(HWND hwnd, WORD pos); BOOL RegisterGauge(); #

packetbuilder.java

package com.ll.smsbeans; /** * * @author listlike * <listlike@hotmail.com> * */ public interface PacketBuilder

packet.java

package com.ll.smsbeans; import java.io.IOException; import java.io.Serializable; public interface Packet extends Serializable { /** * 对当前的数据包打包成字节数组,以便于发送。 * @return 返回字节数组 * @thro

searchfileset.java

/* * SearchFileSet.java - Abstract file matcher interface * Copyright (C) 1999, 2001 Slava Pestov * * This program is free software; you can redistribute it and/or * modify it under the terms of

optionpane.java

/* * OptionPane.java - Option pane interface * Copyright (C) 1999 Slava Pestov * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Pub

datasourcei.java

package llm.pool.relation; import javax.sql.DataSource; public interface DataSourceI { public DataSource getDataSource( DBConnectPara dbConnectPara ) throws LlmDBException; }

swffilesignature.java

/* * Created on Jul 4, 2003 */ package com.anotherbigidea.flash.interfaces; /** * Interface for passing the SWF file signature. * * This allows the new Flash 6/MX Compressed File signat

ilookdao.java

package com.news.dao; import com.news.struts.form.LookForm; public interface IlookDao { public void look(LookForm lookForm); }

ilogindao.java

package com.news.dao; import javax.servlet.http.HttpSession; import com.news.struts.form.LoginForm; public interface IloginDao { public String validateUser(LoginForm loginForm,HttpSession s

isearchdao.java

package com.news.dao; import com.news.struts.form.SearchForm; public interface IsearchDao { public void search(SearchForm searchForm); }