代码搜索:Subclass
找到约 2,526 项符合「Subclass」的源代码
代码结果 2,526
www.eeworm.com/read/100133/6273732
sh runtest.sh
#
# Demonstrate how to subclass a grammar and actually get it to compile.
# Biggest issue is making sure ANTLR, compiler, and interpreter can see
# the supergrammar and classes needed by it. In this
www.eeworm.com/read/486925/6521124
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/410817/11268246
h filebrowser.h
/*
by Jacek Surazski
FileBrowser, a QListBox subclass that allows the user to browse directories
and files. Unlike QFileDialog, which works as a modal window, the FileBrowser
widget can be embedde
www.eeworm.com/read/410700/11271361
cpp testdriver.cpp
// testDriver.cpp
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 6/8/2007
//
// This source file contains the implementation of a subclass
www.eeworm.com/read/410700/11271407
cpp testdevice.cpp
// testDevice.cpp
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 6/8/2007
//
// This source file contains the implementation of a subclass
www.eeworm.com/read/410700/11271421
h forusbdevice.h
// ForUsbDevice.h
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 6/8/2007
//
// This include file contains the definition of a subclass of
www.eeworm.com/read/410700/11271429
cpp forusbqueue.cpp
// ForUsbQueue.cpp
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 6/8/2007
//
// This source file contains the implementation of a subclass
www.eeworm.com/read/341217/12101046
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/127116/14377944
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/120429/14803783
java extendedoperation.java
// Subclass of extensible, serializable typesafe enum - Page 112
import java.io.*;
abstract class ExtendedOperation extends Operation {
ExtendedOperation(String name) { super(name); }