代码搜索:Serializable

找到约 10,000 项符合「Serializable」的源代码

代码结果 10,000
www.eeworm.com/read/197483/5094472

java admin.java

package com.stuman.domain; public class Admin implements java.io.Serializable { // Fields private Integer id; private String name; private String password; // Constructors /
www.eeworm.com/read/197012/5098172

java servicestate.java

package javax.slee.management; import java.io.Serializable; import java.io.StreamCorruptedException; /** * This class defines an enumerated type that encapsulates the state of a Service. * *
www.eeworm.com/read/197012/5098190

java sleestate.java

package javax.slee.management; import java.io.Serializable; import java.io.StreamCorruptedException; /** * This class defines an enumerated type that encapsulates the operational state of the SLEE.
www.eeworm.com/read/197004/5098534

java versioninfo.java

package org.jgap.distr.grid.request; import java.io.*; public class VersionInfo implements Serializable { public String currentVersion; public String filenameOfLib; public Stri
www.eeworm.com/read/195032/5115684

cs playerupdatestruct.cs

using System; using Microsoft.DirectX; [Serializable] public struct PlayerUpdate { public Vector3 Location; public Matrix WorldMatrix; public int State; public float WaitCount;
www.eeworm.com/read/194615/5125640

java addressespk.java

package address; import java.io.*; public class AddressesPK implements Serializable { public String firstName; public String lastName; public AddressesPK() { } //设置复合键 public AddressesP
www.eeworm.com/read/194546/5129646

java catalogexception.java

package com.eline.wap.catalog.exceptions; import java.io.Serializable; /** * * @author Lucifer * * This exception is the base class for all the event exceptions. */ public class Cat
www.eeworm.com/read/194325/5132248

java iunitofwork.java

/* @LICENSE_COPYRIGHT@ */ package net.sf.irunninglog.transaction; import java.io.Serializable; import java.util.Collection; /** * Interface defining a unit of work for interacting with the a
www.eeworm.com/read/194325/5132266

java ierror.java

/* @LICENSE_COPYRIGHT@ */ package net.sf.irunninglog.util; import java.io.Serializable; /** * Interface definition for errors within the application. This interface * must be implemented b
www.eeworm.com/read/192606/5152097

cs productinfo.cs

using System; /// /// 图书的基本信息 /// [Serializable] public class ProductInfo { // 内部变量 private int id; private string name; private string description;