代码搜索:extends

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

代码结果 10,000
www.eeworm.com/read/207779/5001043

java livingroomdoor.java

/* * A concrete Door for Living Room */ public class LivingRoomDoor extends Door { private String doorName; public LivingRoomDoor() { doorName = "LivingRoomDoor"; } p
www.eeworm.com/read/204713/5029942

java releaseparameters.java

package ravenscar; // import javax.realtime.*; public class ReleaseParameters // extends javax.realtime.ReleaseParameters { protected ReleaseParameters() // { super();} { } }
www.eeworm.com/read/201301/5059921

java~3~ ipinfodatamodel.java~3~

package tsinghuaip; public class IPInfoDataModel extends AbstractTableModel { private Object[][] arrIPInfo; private Vector startIPVector; private Vector endIPVector; private
www.eeworm.com/read/197970/5090415

java remoteinterface.java

public interface RemoteInterface extends java.rmi.Remote{ String message(String message) throws java.rmi.RemoteException; }
www.eeworm.com/read/197970/5090507

java processingerrorexception.java

package stocktrader; /** * ProcessingErrorException is thrown if an error occurs while * either buying or selling a stock. */ public class ProcessingErrorException extends Exception { /
www.eeworm.com/read/194546/5129645

java catalogdaosysexception.java

package com.eline.wap.catalog.exceptions; /** * * @author Lucifer * * CatalogDAOSysException is an exception that extends the standard * RunTimeException Exception. This is thrown by the
www.eeworm.com/read/193219/5146610

java changedchild.java

package ChangedPackage; /** * OLD: The changes in this class are to do with changes in inherited * methods and fields. */ public class ChangedChild extends ChangedParent { /** This construct
www.eeworm.com/read/193219/5146630

java changedchild.java

package ChangedPackage; /** * NEW: The changes in this class are to do with changes in inherited * methods and fields. */ public class ChangedChild extends ChangedParent { /** This construct
www.eeworm.com/read/191404/5166094

java durationparsingexception.java

package net.sourceforge.ganttproject.task; public class DurationParsingException extends RuntimeException { public DurationParsingException() { } public DurationParsingException(String m
www.eeworm.com/read/191404/5166245

java booleanoption.java

package net.sourceforge.ganttproject.gui.options.model; public interface BooleanOption extends GPOption { boolean isChecked(); void toggle(); }