代码搜索:Serializable

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

代码结果 10,000
www.eeworm.com/read/452706/1648548

java cache.java

package cn.hxex.exam.cache; import java.io.Serializable; import java.util.Properties; /** * Defina a common Cache interface * * @author galaxy * */ public interface Cache { /**
www.eeworm.com/read/452253/1657466

java people.java

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package logintest; import java.io.Serializable; import javax.persistence.Entity; import javax.pers
www.eeworm.com/read/451220/1663889

cs domain.cs

using System; using System.Collections; namespace NHibernate.Test.NHSpecificTest.NH643 { [Serializable] public class Parent { private int _id; private IList _children = new ArrayList(
www.eeworm.com/read/451220/1663937

cs user.cs

using System; using Iesi.Collections; namespace NHibernate.Test.NHSpecificTest.NH295 { [Serializable] public class User : Party { private ISet _groups = new HashedSet(); internal Us
www.eeworm.com/read/451220/1664056

cs user.cs

using System; using Iesi.Collections; namespace NHibernate.Test.NHSpecificTest.NH257 { [Serializable] public class User : Party { private ISet _groups = new HashedSet(); public ISet
www.eeworm.com/read/451220/1664058

cs party.cs

using System; namespace NHibernate.Test.NHSpecificTest.NH257 { [Serializable] public abstract class Party { private int _id; public int Id { get { return _id; } set { _id
www.eeworm.com/read/451220/1664106

cs blog.cs

using System; using System.Collections.Generic; namespace NHibernate.Test.NHSpecificTest.NH1419 { [Serializable] public class Blog { private Guid id; private string name; private
www.eeworm.com/read/451220/1664107

cs entry.cs

using System; namespace NHibernate.Test.NHSpecificTest.NH1419 { [Serializable] public class Entry { private Guid id; private Blog blog; private string subject; public Guid ID
www.eeworm.com/read/451220/1664219

cs mapproxy.cs

using System; using System.Collections; namespace NHibernate.Proxy.Map { /// Proxy for "dynamic-map" entity representations. [Serializable] public class MapProxy : INHi
www.eeworm.com/read/251427/4420067

java artistvo.java

package music.shared; public class ArtistVO implements java.io.Serializable { private int id; private String name; private Boolean gender; private String description; pu