代码搜索:refactor

找到约 282 项符合「refactor」的源代码

代码结果 282
www.eeworm.com/read/124166/14592183

makefile

# From Thinking in Patterns (with Java) by Bruce Eckel # At http://www.BruceEckel.com # (c)2003 Bruce Eckel # Copyright notice in Copyright.txt # Automatically-generated MAKEFILE # For examples
www.eeworm.com/read/124166/14592184

java recycleap.java

//: refactor:recycleap:RecycleAP.java // Recycling with RTTI and Prototypes. package refactor.recycleap; import refactor.trash.*; import java.util.*; import junit.framework.*; public class Re
www.eeworm.com/read/124166/14592291

java junittestall.java

import junit.framework.*; import junit.swingui.*; public class JUnitTestAll { public static void main(String[] args) { new TestRunner().start(new String[] { "JUnitTestAll" }); } pu
www.eeworm.com/read/266192/11236922

makefile

# Master makefile for Thinking in Patterns by Bruce Eckel # at http://www.BruceEckel.com # (c)2003 Bruce Eckel # Copyright notice in Copyright.txt # Compiles all the code in the book # Using the
www.eeworm.com/read/266192/11236930

xml build.xml

build.xml for refactor of "Thinking in Java, 3rd Edition" by Bruce Eck
www.eeworm.com/read/266192/11236934

java cardboard.java

//: refactor:trash:Cardboard.java // The Cardboard class with prototyping. package refactor.trash; public class Cardboard extends Trash { private static double val = 0.23f; public Cardboar
www.eeworm.com/read/266192/11236936

java fillable.java

//: refactor:trash:Fillable.java // Any object that can be filled with Trash. package refactor.trash; public interface Fillable { void addTrash(Trash t); } ///:~
www.eeworm.com/read/266192/11236938

java aluminum.java

//: refactor:trash:Aluminum.java // The Aluminum class with prototyping. package refactor.trash; public class Aluminum extends Trash { private static double val = 1.67f; public Aluminum(do
www.eeworm.com/read/266192/11236942

java glass.java

//: refactor:trash:Glass.java // The Glass class with prototyping. package refactor.trash; public class Glass extends Trash { private static double val = 0.23f; public Glass(double wt) { s
www.eeworm.com/read/266192/11236944

java paper.java

//: refactor:trash:Paper.java // The Paper class with prototyping. package refactor.trash; public class Paper extends Trash { private static double val = 0.10f; public Paper(double wt) { s