代码搜索:支付接口
找到约 10,000 项符合「支付接口」的源代码
代码结果 10,000
www.eeworm.com/read/343909/3213965
h mainfrm.h
// MainFrm.h : CMainFrame 类的接口
//
#pragma once
class CMainFrame : public CFrameWnd
{
protected: // 仅从序列化创建
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
// 属性
public:
// 操作
publi
www.eeworm.com/read/339896/3292604
java studentdao.java
package cn.hxex.exam.dao;
import cn.hxex.exam.model.Student;
/**
* 用于操作学生的StudentDAO接口
*
* @author galaxy
*
*/
public interface StudentDAO extends GenericDAO
{
}
www.eeworm.com/read/339896/3292608
java testpaperdao.java
package cn.hxex.exam.dao;
import cn.hxex.exam.model.TestPaper;
/**
* 试卷实体对象的操作接口
*
* @author galaxy
*
*/
public interface TestPaperDAO
extends GenericDAO
{
}
www.eeworm.com/read/339896/3292621
java roledao.java
package cn.hxex.exam.dao;
import cn.hxex.exam.model.Role;
/**
* 操作Role对象的DAO接口
*
* @author galaxy
*
*/
public interface RoleDAO
extends GenericDAO
{
}
www.eeworm.com/read/335966/3354773
java addresses.java
package address;
import java.rmi.*;
import javax.ejb.*;
//Addresses EJB的远程接口
public interface Addresses extends EJBObject {
public String getFirstName() throws RemoteException;
public String getL
www.eeworm.com/read/329903/3429345
java compare.java
package com.telephonebook;
import java.util.Comparator;
/**
*
* 实现comparator接口,重写compare()方法
* 用于按照姓名进行排序
*
*/
public class Compare implements Comparator
{
public int
www.eeworm.com/read/329903/3429347
java sexcompare.java
package com.telephonebook;
import java.util.Comparator;
/**
*
* 实现comparator接口,重写compare()方法
* 用于按照性别进行排序
*
*/
public class SexCompare implements Comparator{
@Override
pu
www.eeworm.com/read/328884/3435753
java addmoneyremote.java
package com.classmoney;
import java.util.Date;
import javax.ejb.Remote;
/**
* This is the business interface for addmoney enterprise bean.
*/
@Remote
//增加money的接口
public interface ad
www.eeworm.com/read/328884/3435756
java userremote.java
package com.classmoney;
import java.util.List;
import javax.ejb.Remote;
/**
* This is the business interface for user enterprise bean.
*/
@Remote
//增加用户的接口
public interface userRemot
www.eeworm.com/read/326096/3475163
java stringsorttest.java
//: StringSortTest.java
// Testing the generic sorting Vector
//实现比较大小用的接口
import java.util.*;
public class StringSortTest {
static class StringCompare implements Compare {
public bool