代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/117629/14911084
java traderesult.java
package examples.ejb20.basic.statelessSession;
import java.io.Serializable;
/**
* This class reflects the results of a buy/sell transaction.
*
* @author Copyright (c) 1999-2003 by BEA Syst
www.eeworm.com/read/117627/14911217
java bandinfo.java
package examples.ejb20.relationships.bands;
import java.io.Serializable;
import java.sql.Date;
/**
* @author Copyright (c) 2003 by BEA Systems. All Rights Reserved.
*/
public final class
www.eeworm.com/read/116499/14968131
java people.java
public class People implements java.io.Serializable
{
String name=null;
int time=0;
public People(String name,int t)
{
this.name=name;
time=t;
}
pu
www.eeworm.com/read/216704/14996710
cs criteriatype.cs
using System;
namespace Platform.Data {
[Serializable()]
public enum CriteriaType {
Like,
MoreThan,
MoreThanEquals,
LessThan,
LessThanEquals,
Equals,
NotEqu
www.eeworm.com/read/115583/15008506
java accountpk.java
package examples;
import java.io.Serializable;
/**
* Primary Key class for Account.
*/
public class AccountPK implements java.io.Serializable {
public String accountID;
public AccountPK(Strin
www.eeworm.com/read/216107/15027077
java node.java
// FrontEnd Plus GUI for JAD
// DeCompiled : Node.class
package Generator;
import java.io.Serializable;
public class Node
implements Serializable
{
static final long serialVersion
www.eeworm.com/read/114331/15057285
java helloworldhome.java
import java.io.Serializable;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.EJBHome;
public interface HelloWorldHome extends EJBHome {
HelloWorld create() th
www.eeworm.com/read/215275/15066009
java userbean.java
package dbproject.model;
import java.io.Serializable;
import java.util.Enumeration;
import java.util.Hashtable;
/**
* UserBean will hold all of the information
* regarding
www.eeworm.com/read/214632/15092781
java message.java
import java.io.Serializable;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2003
* Company: e-top
* @author cylix
* @version 1.0
*/
/**
* messag
www.eeworm.com/read/214548/15096962
java task.java
package compute;
import java.io.Serializable;
public interface Task extends Serializable {
void execute();
boolean getStatus();
Object getResult();
}