代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/326747/3468759
java precollectionupdateeventlistener.java
package org.hibernate.event;
import java.io.Serializable;
/**
* Called before updating a collection
*
* @author Gail Badner
*/
public interface PreCollectionUpdateEventListener extends Serializa
www.eeworm.com/read/326747/3468760
java precollectionrecreateeventlistener.java
//$Id: $
package org.hibernate.event;
import java.io.Serializable;
/**
* Called before recreating a collection
*
* @author Gail Badner
*/
public interface PreCollectionRecreateEventListener exte
www.eeworm.com/read/326747/3468816
java optimizer.java
package org.hibernate.id.enhanced;
import java.io.Serializable;
/**
* Performs optimization on an optimizable identifier generator. Typically
* this optimization takes the form of trying to
www.eeworm.com/read/323175/3518187
java options.java
package com.xdf.exams.bean;
/**
* Options generated by MyEclipse - Hibernate Tools
*/
public class Options implements java.io.Serializable {
// Fields
private Long
www.eeworm.com/read/323175/3518189
java examrecord.java
package com.xdf.exams.bean;
/**
* Examrecord generated by MyEclipse - Hibernate Tools
*/
public class Examrecord implements java.io.Serializable {
// Fields
private Lo
www.eeworm.com/read/323175/3518193
java teacher.java
package com.xdf.exams.bean;
/**
* Teacher generated by MyEclipse - Hibernate Tools
*/
public class Teacher implements java.io.Serializable {
// Fields
private Long
www.eeworm.com/read/322403/3525419
java userinfo.java
package com.qiming.springch3.model.pojo;
/**
* UserInfo generated by MyEclipse - Hibernate Tools
*/
public class UserInfo implements java.io.Serializable {
// Fields
www.eeworm.com/read/321651/3531596
cs reportinfo.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace ShoppingAssistantLib
{
[Serializable]
public class ReportInfo
{
protected int _productID;
protected int
www.eeworm.com/read/318768/3563276
java person.java
import java.io.*;
public class Person implements Comparable, Serializable
{
// Constructor
public Person(String firstName, String surname)
{
this.firstName = firstName;
this.sur
www.eeworm.com/read/318768/3563278
java bookentry.java
import java.io.*;
class BookEntry implements Serializable
{
public BookEntry(Person person, PhoneNumber number)
{
this.person = person;
this.number = number;
}
public Person