Source Code Cross Referenced for Methods.java in  » IDE-Netbeans » cvsclient » simple » cpu » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » cvsclient » simple.cpu 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


0001:        /*
0002:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0003:         *
0004:         * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
0005:         *
0006:         * The contents of this file are subject to the terms of either the GNU
0007:         * General Public License Version 2 only ("GPL") or the Common
0008:         * Development and Distribution License("CDDL") (collectively, the
0009:         * "License"). You may not use this file except in compliance with the
0010:         * License. You can obtain a copy of the License at
0011:         * http://www.netbeans.org/cddl-gplv2.html
0012:         * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
0013:         * specific language governing permissions and limitations under the
0014:         * License.  When distributing the software, include this License Header
0015:         * Notice in each file and include the License file at
0016:         * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
0017:         * particular file as subject to the "Classpath" exception as provided
0018:         * by Sun in the GPL Version 2 section of the License file that
0019:         * accompanied this code. If applicable, add the following below the
0020:         * License Header, with the fields enclosed by brackets [] replaced by
0021:         * your own identifying information:
0022:         * "Portions Copyrighted [year] [name of copyright owner]"
0023:         *
0024:         * Contributor(s):
0025:         * The Original Software is NetBeans. The Initial Developer of the Original
0026:         * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
0027:         * Microsystems, Inc. All Rights Reserved.
0028:         *
0029:         * If you wish your version of this file to be governed by only the CDDL
0030:         * or only the GPL Version 2, indicate your decision by adding
0031:         * "[Contributor] elects to include this software in this distribution
0032:         * under the [CDDL or GPL Version 2] license." If you do not indicate a
0033:         * single choice of license, a recipient has the option to distribute
0034:         * your version of this file under either the CDDL, the GPL Version 2 or
0035:         * to extend the choice of license to its licensees as provided above.
0036:         * However, if you add GPL Version 2 code and therefore, elected the GPL
0037:         * Version 2 license, then the option applies only if the new code is
0038:         * made subject to such option by the copyright holder.
0039:         */
0040:
0041:        package simple.cpu;
0042:
0043:        /**
0044:         *
0045:         * @author ehucka
0046:         */
0047:        public class Methods {
0048:            //~ Constructors -------------------------------------------------------------------------------------------------------------
0049:
0050:            /** Creates a new instance of WaitingTest */
0051:            public Methods() {
0052:            }
0053:
0054:            //~ Methods ------------------------------------------------------------------------------------------------------------------
0055:
0056:            /**
0057:             * @param args the command line arguments
0058:             */
0059:            public static void main(String[] args) {
0060:                System.out.println("start app: " + System.currentTimeMillis());
0061:
0062:                Methods test = new Methods();
0063:
0064:                for (int i = 0; i < 2; i++) {
0065:                    test.method0();
0066:                }
0067:
0068:                System.out.println("end app: " + System.currentTimeMillis());
0069:
0070:                /*
0071:                   //generation
0072:                   int count=100;
0073:                   for (int i=0;i < count;i++) {
0074:                       System.out.println("    public void method"+i+"() {");
0075:                       System.out.println("        long time=System.currentTimeMillis();");
0076:                       System.out.println("        while ((System.currentTimeMillis()-time) < 10);");
0077:                       if (i < (count-1))
0078:                           System.out.println("        method"+(i+1)+"();");
0079:                       System.out.println("    }\n");
0080:                   }*/
0081:            }
0082:
0083:            public void method0() {
0084:                long time = System.currentTimeMillis();
0085:
0086:                while ((System.currentTimeMillis() - time) < 10) {
0087:                    ;
0088:                }
0089:
0090:                method1();
0091:            }
0092:
0093:            public void method1() {
0094:                long time = System.currentTimeMillis();
0095:
0096:                while ((System.currentTimeMillis() - time) < 10) {
0097:                    ;
0098:                }
0099:
0100:                method2();
0101:            }
0102:
0103:            public void method10() {
0104:                long time = System.currentTimeMillis();
0105:
0106:                while ((System.currentTimeMillis() - time) < 10) {
0107:                    ;
0108:                }
0109:
0110:                method11();
0111:            }
0112:
0113:            public void method11() {
0114:                long time = System.currentTimeMillis();
0115:
0116:                while ((System.currentTimeMillis() - time) < 10) {
0117:                    ;
0118:                }
0119:
0120:                method12();
0121:            }
0122:
0123:            public void method12() {
0124:                long time = System.currentTimeMillis();
0125:
0126:                while ((System.currentTimeMillis() - time) < 10) {
0127:                    ;
0128:                }
0129:
0130:                method13();
0131:            }
0132:
0133:            public void method13() {
0134:                long time = System.currentTimeMillis();
0135:
0136:                while ((System.currentTimeMillis() - time) < 10) {
0137:                    ;
0138:                }
0139:
0140:                method14();
0141:            }
0142:
0143:            public void method14() {
0144:                long time = System.currentTimeMillis();
0145:
0146:                while ((System.currentTimeMillis() - time) < 10) {
0147:                    ;
0148:                }
0149:
0150:                method15();
0151:            }
0152:
0153:            public void method15() {
0154:                long time = System.currentTimeMillis();
0155:
0156:                while ((System.currentTimeMillis() - time) < 10) {
0157:                    ;
0158:                }
0159:
0160:                method16();
0161:            }
0162:
0163:            public void method16() {
0164:                long time = System.currentTimeMillis();
0165:
0166:                while ((System.currentTimeMillis() - time) < 10) {
0167:                    ;
0168:                }
0169:
0170:                method17();
0171:            }
0172:
0173:            public void method17() {
0174:                long time = System.currentTimeMillis();
0175:
0176:                while ((System.currentTimeMillis() - time) < 10) {
0177:                    ;
0178:                }
0179:
0180:                method18();
0181:            }
0182:
0183:            public void method18() {
0184:                long time = System.currentTimeMillis();
0185:
0186:                while ((System.currentTimeMillis() - time) < 10) {
0187:                    ;
0188:                }
0189:
0190:                method19();
0191:            }
0192:
0193:            public void method19() {
0194:                long time = System.currentTimeMillis();
0195:
0196:                while ((System.currentTimeMillis() - time) < 10) {
0197:                    ;
0198:                }
0199:
0200:                method20();
0201:            }
0202:
0203:            public void method2() {
0204:                long time = System.currentTimeMillis();
0205:
0206:                while ((System.currentTimeMillis() - time) < 10) {
0207:                    ;
0208:                }
0209:
0210:                method3();
0211:            }
0212:
0213:            public void method20() {
0214:                long time = System.currentTimeMillis();
0215:
0216:                while ((System.currentTimeMillis() - time) < 10) {
0217:                    ;
0218:                }
0219:
0220:                method21();
0221:            }
0222:
0223:            public void method21() {
0224:                long time = System.currentTimeMillis();
0225:
0226:                while ((System.currentTimeMillis() - time) < 10) {
0227:                    ;
0228:                }
0229:
0230:                method22();
0231:            }
0232:
0233:            public void method22() {
0234:                long time = System.currentTimeMillis();
0235:
0236:                while ((System.currentTimeMillis() - time) < 10) {
0237:                    ;
0238:                }
0239:
0240:                method23();
0241:            }
0242:
0243:            public void method23() {
0244:                long time = System.currentTimeMillis();
0245:
0246:                while ((System.currentTimeMillis() - time) < 10) {
0247:                    ;
0248:                }
0249:
0250:                method24();
0251:            }
0252:
0253:            public void method24() {
0254:                long time = System.currentTimeMillis();
0255:
0256:                while ((System.currentTimeMillis() - time) < 10) {
0257:                    ;
0258:                }
0259:
0260:                method25();
0261:            }
0262:
0263:            public void method25() {
0264:                long time = System.currentTimeMillis();
0265:
0266:                while ((System.currentTimeMillis() - time) < 10) {
0267:                    ;
0268:                }
0269:
0270:                method26();
0271:            }
0272:
0273:            public void method26() {
0274:                long time = System.currentTimeMillis();
0275:
0276:                while ((System.currentTimeMillis() - time) < 10) {
0277:                    ;
0278:                }
0279:
0280:                method27();
0281:            }
0282:
0283:            public void method27() {
0284:                long time = System.currentTimeMillis();
0285:
0286:                while ((System.currentTimeMillis() - time) < 10) {
0287:                    ;
0288:                }
0289:
0290:                method28();
0291:            }
0292:
0293:            public void method28() {
0294:                long time = System.currentTimeMillis();
0295:
0296:                while ((System.currentTimeMillis() - time) < 10) {
0297:                    ;
0298:                }
0299:
0300:                method29();
0301:            }
0302:
0303:            public void method29() {
0304:                long time = System.currentTimeMillis();
0305:
0306:                while ((System.currentTimeMillis() - time) < 10) {
0307:                    ;
0308:                }
0309:
0310:                method30();
0311:            }
0312:
0313:            public void method3() {
0314:                long time = System.currentTimeMillis();
0315:
0316:                while ((System.currentTimeMillis() - time) < 10) {
0317:                    ;
0318:                }
0319:
0320:                method4();
0321:            }
0322:
0323:            public void method30() {
0324:                long time = System.currentTimeMillis();
0325:
0326:                while ((System.currentTimeMillis() - time) < 10) {
0327:                    ;
0328:                }
0329:
0330:                method31();
0331:            }
0332:
0333:            public void method31() {
0334:                long time = System.currentTimeMillis();
0335:
0336:                while ((System.currentTimeMillis() - time) < 10) {
0337:                    ;
0338:                }
0339:
0340:                method32();
0341:            }
0342:
0343:            public void method32() {
0344:                long time = System.currentTimeMillis();
0345:
0346:                while ((System.currentTimeMillis() - time) < 10) {
0347:                    ;
0348:                }
0349:
0350:                method33();
0351:            }
0352:
0353:            public void method33() {
0354:                long time = System.currentTimeMillis();
0355:
0356:                while ((System.currentTimeMillis() - time) < 10) {
0357:                    ;
0358:                }
0359:
0360:                method34();
0361:            }
0362:
0363:            public void method34() {
0364:                long time = System.currentTimeMillis();
0365:
0366:                while ((System.currentTimeMillis() - time) < 10) {
0367:                    ;
0368:                }
0369:
0370:                method35();
0371:            }
0372:
0373:            public void method35() {
0374:                long time = System.currentTimeMillis();
0375:
0376:                while ((System.currentTimeMillis() - time) < 10) {
0377:                    ;
0378:                }
0379:
0380:                method36();
0381:            }
0382:
0383:            public void method36() {
0384:                long time = System.currentTimeMillis();
0385:
0386:                while ((System.currentTimeMillis() - time) < 10) {
0387:                    ;
0388:                }
0389:
0390:                method37();
0391:            }
0392:
0393:            public void method37() {
0394:                long time = System.currentTimeMillis();
0395:
0396:                while ((System.currentTimeMillis() - time) < 10) {
0397:                    ;
0398:                }
0399:
0400:                method38();
0401:            }
0402:
0403:            public void method38() {
0404:                long time = System.currentTimeMillis();
0405:
0406:                while ((System.currentTimeMillis() - time) < 10) {
0407:                    ;
0408:                }
0409:
0410:                method39();
0411:            }
0412:
0413:            public void method39() {
0414:                long time = System.currentTimeMillis();
0415:
0416:                while ((System.currentTimeMillis() - time) < 10) {
0417:                    ;
0418:                }
0419:
0420:                method40();
0421:            }
0422:
0423:            public void method4() {
0424:                long time = System.currentTimeMillis();
0425:
0426:                while ((System.currentTimeMillis() - time) < 10) {
0427:                    ;
0428:                }
0429:
0430:                method5();
0431:            }
0432:
0433:            public void method40() {
0434:                long time = System.currentTimeMillis();
0435:
0436:                while ((System.currentTimeMillis() - time) < 10) {
0437:                    ;
0438:                }
0439:
0440:                method41();
0441:            }
0442:
0443:            public void method41() {
0444:                long time = System.currentTimeMillis();
0445:
0446:                while ((System.currentTimeMillis() - time) < 10) {
0447:                    ;
0448:                }
0449:
0450:                method42();
0451:            }
0452:
0453:            public void method42() {
0454:                long time = System.currentTimeMillis();
0455:
0456:                while ((System.currentTimeMillis() - time) < 10) {
0457:                    ;
0458:                }
0459:
0460:                method43();
0461:            }
0462:
0463:            public void method43() {
0464:                long time = System.currentTimeMillis();
0465:
0466:                while ((System.currentTimeMillis() - time) < 10) {
0467:                    ;
0468:                }
0469:
0470:                method44();
0471:            }
0472:
0473:            public void method44() {
0474:                long time = System.currentTimeMillis();
0475:
0476:                while ((System.currentTimeMillis() - time) < 10) {
0477:                    ;
0478:                }
0479:
0480:                method45();
0481:            }
0482:
0483:            public void method45() {
0484:                long time = System.currentTimeMillis();
0485:
0486:                while ((System.currentTimeMillis() - time) < 10) {
0487:                    ;
0488:                }
0489:
0490:                method46();
0491:            }
0492:
0493:            public void method46() {
0494:                long time = System.currentTimeMillis();
0495:
0496:                while ((System.currentTimeMillis() - time) < 10) {
0497:                    ;
0498:                }
0499:
0500:                method47();
0501:            }
0502:
0503:            public void method47() {
0504:                long time = System.currentTimeMillis();
0505:
0506:                while ((System.currentTimeMillis() - time) < 10) {
0507:                    ;
0508:                }
0509:
0510:                method48();
0511:            }
0512:
0513:            public void method48() {
0514:                long time = System.currentTimeMillis();
0515:
0516:                while ((System.currentTimeMillis() - time) < 10) {
0517:                    ;
0518:                }
0519:
0520:                method49();
0521:            }
0522:
0523:            public void method49() {
0524:                long time = System.currentTimeMillis();
0525:
0526:                while ((System.currentTimeMillis() - time) < 10) {
0527:                    ;
0528:                }
0529:
0530:                method50();
0531:            }
0532:
0533:            public void method5() {
0534:                long time = System.currentTimeMillis();
0535:
0536:                while ((System.currentTimeMillis() - time) < 10) {
0537:                    ;
0538:                }
0539:
0540:                method6();
0541:            }
0542:
0543:            public void method50() {
0544:                long time = System.currentTimeMillis();
0545:
0546:                while ((System.currentTimeMillis() - time) < 10) {
0547:                    ;
0548:                }
0549:
0550:                method51();
0551:            }
0552:
0553:            public void method51() {
0554:                long time = System.currentTimeMillis();
0555:
0556:                while ((System.currentTimeMillis() - time) < 10) {
0557:                    ;
0558:                }
0559:
0560:                method52();
0561:            }
0562:
0563:            public void method52() {
0564:                long time = System.currentTimeMillis();
0565:
0566:                while ((System.currentTimeMillis() - time) < 10) {
0567:                    ;
0568:                }
0569:
0570:                method53();
0571:            }
0572:
0573:            public void method53() {
0574:                long time = System.currentTimeMillis();
0575:
0576:                while ((System.currentTimeMillis() - time) < 10) {
0577:                    ;
0578:                }
0579:
0580:                method54();
0581:            }
0582:
0583:            public void method54() {
0584:                long time = System.currentTimeMillis();
0585:
0586:                while ((System.currentTimeMillis() - time) < 10) {
0587:                    ;
0588:                }
0589:
0590:                method55();
0591:            }
0592:
0593:            public void method55() {
0594:                long time = System.currentTimeMillis();
0595:
0596:                while ((System.currentTimeMillis() - time) < 10) {
0597:                    ;
0598:                }
0599:
0600:                method56();
0601:            }
0602:
0603:            public void method56() {
0604:                long time = System.currentTimeMillis();
0605:
0606:                while ((System.currentTimeMillis() - time) < 10) {
0607:                    ;
0608:                }
0609:
0610:                method57();
0611:            }
0612:
0613:            public void method57() {
0614:                long time = System.currentTimeMillis();
0615:
0616:                while ((System.currentTimeMillis() - time) < 10) {
0617:                    ;
0618:                }
0619:
0620:                method58();
0621:            }
0622:
0623:            public void method58() {
0624:                long time = System.currentTimeMillis();
0625:
0626:                while ((System.currentTimeMillis() - time) < 10) {
0627:                    ;
0628:                }
0629:
0630:                method59();
0631:            }
0632:
0633:            public void method59() {
0634:                long time = System.currentTimeMillis();
0635:
0636:                while ((System.currentTimeMillis() - time) < 10) {
0637:                    ;
0638:                }
0639:
0640:                method60();
0641:            }
0642:
0643:            public void method6() {
0644:                long time = System.currentTimeMillis();
0645:
0646:                while ((System.currentTimeMillis() - time) < 10) {
0647:                    ;
0648:                }
0649:
0650:                method7();
0651:            }
0652:
0653:            public void method60() {
0654:                long time = System.currentTimeMillis();
0655:
0656:                while ((System.currentTimeMillis() - time) < 10) {
0657:                    ;
0658:                }
0659:
0660:                method61();
0661:            }
0662:
0663:            public void method61() {
0664:                long time = System.currentTimeMillis();
0665:
0666:                while ((System.currentTimeMillis() - time) < 10) {
0667:                    ;
0668:                }
0669:
0670:                method62();
0671:            }
0672:
0673:            public void method62() {
0674:                long time = System.currentTimeMillis();
0675:
0676:                while ((System.currentTimeMillis() - time) < 10) {
0677:                    ;
0678:                }
0679:
0680:                method63();
0681:            }
0682:
0683:            public void method63() {
0684:                long time = System.currentTimeMillis();
0685:
0686:                while ((System.currentTimeMillis() - time) < 10) {
0687:                    ;
0688:                }
0689:
0690:                method64();
0691:            }
0692:
0693:            public void method64() {
0694:                long time = System.currentTimeMillis();
0695:
0696:                while ((System.currentTimeMillis() - time) < 10) {
0697:                    ;
0698:                }
0699:
0700:                method65();
0701:            }
0702:
0703:            public void method65() {
0704:                long time = System.currentTimeMillis();
0705:
0706:                while ((System.currentTimeMillis() - time) < 10) {
0707:                    ;
0708:                }
0709:
0710:                method66();
0711:            }
0712:
0713:            public void method66() {
0714:                long time = System.currentTimeMillis();
0715:
0716:                while ((System.currentTimeMillis() - time) < 10) {
0717:                    ;
0718:                }
0719:
0720:                method67();
0721:            }
0722:
0723:            public void method67() {
0724:                long time = System.currentTimeMillis();
0725:
0726:                while ((System.currentTimeMillis() - time) < 10) {
0727:                    ;
0728:                }
0729:
0730:                method68();
0731:            }
0732:
0733:            public void method68() {
0734:                long time = System.currentTimeMillis();
0735:
0736:                while ((System.currentTimeMillis() - time) < 10) {
0737:                    ;
0738:                }
0739:
0740:                method69();
0741:            }
0742:
0743:            public void method69() {
0744:                long time = System.currentTimeMillis();
0745:
0746:                while ((System.currentTimeMillis() - time) < 10) {
0747:                    ;
0748:                }
0749:
0750:                method70();
0751:            }
0752:
0753:            public void method7() {
0754:                long time = System.currentTimeMillis();
0755:
0756:                while ((System.currentTimeMillis() - time) < 10) {
0757:                    ;
0758:                }
0759:
0760:                method8();
0761:            }
0762:
0763:            public void method70() {
0764:                long time = System.currentTimeMillis();
0765:
0766:                while ((System.currentTimeMillis() - time) < 10) {
0767:                    ;
0768:                }
0769:
0770:                method71();
0771:            }
0772:
0773:            public void method71() {
0774:                long time = System.currentTimeMillis();
0775:
0776:                while ((System.currentTimeMillis() - time) < 10) {
0777:                    ;
0778:                }
0779:
0780:                method72();
0781:            }
0782:
0783:            public void method72() {
0784:                long time = System.currentTimeMillis();
0785:
0786:                while ((System.currentTimeMillis() - time) < 10) {
0787:                    ;
0788:                }
0789:
0790:                method73();
0791:            }
0792:
0793:            public void method73() {
0794:                long time = System.currentTimeMillis();
0795:
0796:                while ((System.currentTimeMillis() - time) < 10) {
0797:                    ;
0798:                }
0799:
0800:                method74();
0801:            }
0802:
0803:            public void method74() {
0804:                long time = System.currentTimeMillis();
0805:
0806:                while ((System.currentTimeMillis() - time) < 10) {
0807:                    ;
0808:                }
0809:
0810:                method75();
0811:            }
0812:
0813:            public void method75() {
0814:                long time = System.currentTimeMillis();
0815:
0816:                while ((System.currentTimeMillis() - time) < 10) {
0817:                    ;
0818:                }
0819:
0820:                method76();
0821:            }
0822:
0823:            public void method76() {
0824:                long time = System.currentTimeMillis();
0825:
0826:                while ((System.currentTimeMillis() - time) < 10) {
0827:                    ;
0828:                }
0829:
0830:                method77();
0831:            }
0832:
0833:            public void method77() {
0834:                long time = System.currentTimeMillis();
0835:
0836:                while ((System.currentTimeMillis() - time) < 10) {
0837:                    ;
0838:                }
0839:
0840:                method78();
0841:            }
0842:
0843:            public void method78() {
0844:                long time = System.currentTimeMillis();
0845:
0846:                while ((System.currentTimeMillis() - time) < 10) {
0847:                    ;
0848:                }
0849:
0850:                method79();
0851:            }
0852:
0853:            public void method79() {
0854:                long time = System.currentTimeMillis();
0855:
0856:                while ((System.currentTimeMillis() - time) < 10) {
0857:                    ;
0858:                }
0859:
0860:                method80();
0861:            }
0862:
0863:            public void method8() {
0864:                long time = System.currentTimeMillis();
0865:
0866:                while ((System.currentTimeMillis() - time) < 10) {
0867:                    ;
0868:                }
0869:
0870:                method9();
0871:            }
0872:
0873:            public void method80() {
0874:                long time = System.currentTimeMillis();
0875:
0876:                while ((System.currentTimeMillis() - time) < 10) {
0877:                    ;
0878:                }
0879:
0880:                method81();
0881:            }
0882:
0883:            public void method81() {
0884:                long time = System.currentTimeMillis();
0885:
0886:                while ((System.currentTimeMillis() - time) < 10) {
0887:                    ;
0888:                }
0889:
0890:                method82();
0891:            }
0892:
0893:            public void method82() {
0894:                long time = System.currentTimeMillis();
0895:
0896:                while ((System.currentTimeMillis() - time) < 10) {
0897:                    ;
0898:                }
0899:
0900:                method83();
0901:            }
0902:
0903:            public void method83() {
0904:                long time = System.currentTimeMillis();
0905:
0906:                while ((System.currentTimeMillis() - time) < 10) {
0907:                    ;
0908:                }
0909:
0910:                method84();
0911:            }
0912:
0913:            public void method84() {
0914:                long time = System.currentTimeMillis();
0915:
0916:                while ((System.currentTimeMillis() - time) < 10) {
0917:                    ;
0918:                }
0919:
0920:                method85();
0921:            }
0922:
0923:            public void method85() {
0924:                long time = System.currentTimeMillis();
0925:
0926:                while ((System.currentTimeMillis() - time) < 10) {
0927:                    ;
0928:                }
0929:
0930:                method86();
0931:            }
0932:
0933:            public void method86() {
0934:                long time = System.currentTimeMillis();
0935:
0936:                while ((System.currentTimeMillis() - time) < 10) {
0937:                    ;
0938:                }
0939:
0940:                method87();
0941:            }
0942:
0943:            public void method87() {
0944:                long time = System.currentTimeMillis();
0945:
0946:                while ((System.currentTimeMillis() - time) < 10) {
0947:                    ;
0948:                }
0949:
0950:                method88();
0951:            }
0952:
0953:            public void method88() {
0954:                long time = System.currentTimeMillis();
0955:
0956:                while ((System.currentTimeMillis() - time) < 10) {
0957:                    ;
0958:                }
0959:
0960:                method89();
0961:            }
0962:
0963:            public void method89() {
0964:                long time = System.currentTimeMillis();
0965:
0966:                while ((System.currentTimeMillis() - time) < 10) {
0967:                    ;
0968:                }
0969:
0970:                method90();
0971:            }
0972:
0973:            public void method9() {
0974:                long time = System.currentTimeMillis();
0975:
0976:                while ((System.currentTimeMillis() - time) < 10) {
0977:                    ;
0978:                }
0979:
0980:                method10();
0981:            }
0982:
0983:            public void method90() {
0984:                long time = System.currentTimeMillis();
0985:
0986:                while ((System.currentTimeMillis() - time) < 10) {
0987:                    ;
0988:                }
0989:
0990:                method91();
0991:            }
0992:
0993:            public void method91() {
0994:                long time = System.currentTimeMillis();
0995:
0996:                while ((System.currentTimeMillis() - time) < 10) {
0997:                    ;
0998:                }
0999:
1000:                method92();
1001:            }
1002:
1003:            public void method92() {
1004:                long time = System.currentTimeMillis();
1005:
1006:                while ((System.currentTimeMillis() - time) < 10) {
1007:                    ;
1008:                }
1009:
1010:                method93();
1011:            }
1012:
1013:            public void method93() {
1014:                long time = System.currentTimeMillis();
1015:
1016:                while ((System.currentTimeMillis() - time) < 10) {
1017:                    ;
1018:                }
1019:
1020:                method94();
1021:            }
1022:
1023:            public void method94() {
1024:                long time = System.currentTimeMillis();
1025:
1026:                while ((System.currentTimeMillis() - time) < 10) {
1027:                    ;
1028:                }
1029:
1030:                method95();
1031:            }
1032:
1033:            public void method95() {
1034:                long time = System.currentTimeMillis();
1035:
1036:                while ((System.currentTimeMillis() - time) < 10) {
1037:                    ;
1038:                }
1039:
1040:                method96();
1041:            }
1042:
1043:            public void method96() {
1044:                long time = System.currentTimeMillis();
1045:
1046:                while ((System.currentTimeMillis() - time) < 10) {
1047:                    ;
1048:                }
1049:
1050:                method97();
1051:            }
1052:
1053:            public void method97() {
1054:                long time = System.currentTimeMillis();
1055:
1056:                while ((System.currentTimeMillis() - time) < 10) {
1057:                    ;
1058:                }
1059:
1060:                method98();
1061:            }
1062:
1063:            public void method98() {
1064:                long time = System.currentTimeMillis();
1065:
1066:                while ((System.currentTimeMillis() - time) < 10) {
1067:                    ;
1068:                }
1069:
1070:                method99();
1071:            }
1072:
1073:            public void method99() {
1074:                long time = System.currentTimeMillis();
1075:
1076:                while ((System.currentTimeMillis() - time) < 10) {
1077:                    ;
1078:                }
1079:            }
1080:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.