代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/231203/4717680
java securityofficer.java
package test.interfaces;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
/**
* This Bean serves as an example of a session bean that does not require a subclass to be generat
www.eeworm.com/read/226285/4786282
java main.java
import java.util.Random;
// Subclass that also has sequence generators for byte and short.
class NRandom extends Random {
NRandom() {
}
NRandom(long seed) {
super(seed);
www.eeworm.com/read/213708/4912827
tcl timer.tcl
#
# A simple timer class. You can derive a subclass of Timer
# to provide a simple mechanism for scheduling events:
#
# $self sched $delay -- causes "$self timeout" to be called
# $delay seconds
www.eeworm.com/read/213708/4912855
tcl timer.tcl
#
# A simple timer class. You can derive a subclass of Timer
# to provide a simple mechanism for scheduling events:
#
# $self sched $delay -- causes "$self timeout" to be called
# $delay seconds
www.eeworm.com/read/209547/4975270
java jdbcpet.java
package org.springframework.samples.petclinic.jdbc;
import org.springframework.samples.petclinic.Pet;
/**
* Subclass of Pet that carries temporary id properties
* which are only relevant for
www.eeworm.com/read/204986/5026801
java emptyheapexception.java
package org.placelab.util;
/**
* This exception signifies an invalid access on an empty heap.
* We subclass UndeflowException because this is a type of
* underflow. However, it is nice, since except
www.eeworm.com/read/196600/5101443
tcl new-key-set.tcl
Set/KeySet instproc copy {args} {
# this will work even if this
# function is called by a subclass
set cl [$self info class]
if {[llength $args] == 0} {
set name [new $cl]
} else
www.eeworm.com/read/190666/5181617
java httpurlconnection.java
// HttpURLConnection.java - Subclass of communications links using
// Hypertext Transfer Protocol.
/* Copyright (C) 1999, 2000 Free Software Foundation
This file is part of libgcj.
This softw
www.eeworm.com/read/189308/5201461
java float_token.java
package java_cup.runtime;
/** This subclass of token represents symbols that need to maintain one
* float value as an attribute. It maintains that value in the public
* field int_val.
*
www.eeworm.com/read/189308/5201462
java char_token.java
package java_cup.runtime;
/** This subclass of token represents symbols that need to maintain one
* char value as an attribute. It maintains that value in the public
* field int_val.
*