代码搜索:Subclass

找到约 2,526 项符合「Subclass」的源代码

代码结果 2,526
www.eeworm.com/read/438718/1822852

py listwin.py

# Module 'listwin' # List windows, a subclass of gwin import gwin import stdwin def maxlinewidth(a): # Compute maximum textwidth of lines in a sequence max = 0 for line in a: width = stdwin.text
www.eeworm.com/read/433701/1882034

java swingworker.java

package com.bdaum.dukeSpeaks; import javax.swing.SwingUtilities; /** * This is the 3rd version of SwingWorker (also known as * SwingWorker 3), an abstract class that you subclass to * perf
www.eeworm.com/read/432926/1886311

pde crazyparticle.pde

// A subclass of Particle class CrazyParticle extends Particle { // Just adding one new variable to a CrazyParticle // It inherits all other fields from "Particle", and we don't have to retype t
www.eeworm.com/read/429836/1945314

java calculator.java

package Jt.examples.patterns; import Jt.*; import Jt.xml.*; /** * Calculator implementation based on the Jt Command pattern. * Creating a subclass of JtCommand and implementing the processM
www.eeworm.com/read/423237/2028768

as iseriesitemrenderer.as

package com.yahoo.astra.fl.charts.series { import flash.events.IEventDispatcher; /** * A renderer for an item in a series on a chart. * * Important: Must be a subclass of DisplayOb
www.eeworm.com/read/408005/2255910

java swingworker.java

package com.bdaum.dukeSpeaks; import javax.swing.SwingUtilities; /** * This is the 3rd version of SwingWorker (also known as * SwingWorker 3), an abstract class that you subclass to * perf
www.eeworm.com/read/392527/2496058

java action.java

package com.javaeedev.lightweight.mvc; /** * Prototype Action that execute for handle http request. NOTE that subclass * should designed as "Use and throw". * @finishing www.codefans.net *
www.eeworm.com/read/381758/2641245

java aliencreatureone.java

//nonabstract subclass 1 class AlienCreatureOne extends AlienCreature { String live(){ String living="We alien ones live happily on alien one nutrition."; return living; } } //nonabstract subc
www.eeworm.com/read/380073/2663897

java singletontestdrive.java

package headfirst.singleton.subclass; public class SingletonTestDrive { public static void main(String[] args) { Singleton foo = CoolerSingleton.getInstance(); Singleton bar = HotterSingleton.ge
www.eeworm.com/read/359048/2980945

java aliencreatureone.java

//nonabstract subclass 1 class AlienCreatureOne extends AlienCreature { String live(){ String living="We alien ones live happily on alien one nutrition."; return living; } } //nonabstract subc