代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/120429/14803788
java abstractfoo.java
// Nonserializable stateful class allowing serializable subclass
public abstract class AbstractFoo {
private int x, y; // The state
private boolean initialized = false;
public Abstra
www.eeworm.com/read/120429/14803789
java foo.java
// Serializable subclass of nonserializable stateful class
import java.io.*;
public class Foo extends AbstractFoo implements Serializable {
private void readObject(ObjectInputStream s)
www.eeworm.com/read/118524/14865313
java boundedshapecontroller.java
// BoundedShapeController.java
// BoundedShapeController is a MyShapeController subclass for
// rectangle-bounded shapes, such as MyOvals and MyRectangles.
package com.deitel.advjhtp1.drawing.cont
www.eeworm.com/read/118524/14865319
java myrectangle.java
// MyRectangle.java
// MyRectangle is a MyShape subclass that represents a
// rectangle, including an implementation of the draw method
// for drawing the rectangle on a Graphics2D context.
packa
www.eeworm.com/read/451220/1664289
cs iqueryable.cs
namespace NHibernate.Persister.Entity
{
public enum Declarer
{
Class,
SubClass,
SuperClass
}
///
/// Extends the generic ILoadable contract to add operations req
www.eeworm.com/read/250753/4427000
java myrectangle.java
// MyRectangle.java
// MyRectangle is a MyShape subclass that represents a
// rectangle, including an implementation of the draw method
// for drawing the rectangle on a Graphics2D context.
packa
www.eeworm.com/read/250753/4427010
java boundedshapecontroller.java
// BoundedShapeController.java
// BoundedShapeController is a MyShapeController subclass for
// rectangle-bounded shapes, such as MyOvals and MyRectangles.
package com.deitel.advjhtp1.drawing.cont
www.eeworm.com/read/243866/4518945
java regsingletonchild.java
package com.javapatterns.singleton.demos;
/**
* This class is a subclass of RegSingleton
*/
import java.util.HashMap;
public class RegSingletonChild extends RegSingleton
{
public Re
www.eeworm.com/read/240529/4573133
java regsingletonchild.java
package com.javapatterns.singleton.demos;
/**
* This class is a subclass of RegSingleton
*/
import java.util.HashMap;
public class RegSingletonChild extends RegSingleton
{
public Re
www.eeworm.com/read/231203/4717656
java pet.java
package test.hibernate;
/**
* @author Administrator
*
* @hibernate.subclass
* table="PETS"
* discriminator-value="pet"
*/
public class Pet extends Product {
private An