| Topics in Doc web: | Changed: now 18:49 GMT | Changed by: |
| AbstractInterfacesPackagingProblem | 30 Apr 2003 - 21:48 - r1.3 | DanielBonniot |
| The problem of non-local AI is a very complex one, so you cannot expect it to be modified soon. We have to tackle with it. Here is a justification that I cannot allow ... | ||
| AckermannNoviceExample | 28 Apr 2005 - 11:47 - r1.9 | TWikiGuest |
| / From the command line 1) create a directory ackermann 2) cd into directory ackermann 3) save this source code as main.nice in directory ackermann 4) compile the ... | ||
| AlgebraicDatatype | 25 Feb 2005 - 10:23 - r1.13 | DanielBonniot |
| I think that it would be very convenient to have access to good old algebraic datatypes in Nice, perhaps modified as described in this article: ( http://lampwww.epfl ... | ||
| AspectOrientedMultiMethodExample | 28 Apr 2005 - 11:42 - r1.4 | TWikiGuest |
| See the AOP static crosscutting listings in http://www-106.ibm.com/developerworks/library/j-aopsc/ "AOP banishes the tight-coupling blues" . // Listing 5 package com ... | ||
| BellmanFordShortestPathsExample | 28 Apr 2005 - 11:50 - r1.6 | TWikiGuest |
| // compilation unit BellmanFord.nice package graph; boolean bellmanFordShortestPaths( EdgeListGraph graph, int size, ReadablePropertyMap weightMap, ReadWritePropertyMap ... | ||
| BenchIntermediateExample | 02 Sep 2003 - 20:25 - NEW | DuncanLissett |
| package bench; / Martin Richards developed Bench as a test of systems programming languages. http://www.cl.cam.ac.uk/users/mr/Bench.html In this interpretation of ... | ||
| BinaryMethodsMultiMethodExample | 28 Apr 2005 - 11:41 - r1.7 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a binarymethod.jar binarymethod To run: java jar binarymethod.jar ... | ||
| BinarySearchTreeExample | 11 Apr 2005 - 18:04 - r1.2 | TWikiGuest |
| public ?U getValue(?IntTreeNode node, T key); getValue(null, key) null; class IntTreeNode { private !T m key; private U m value; private ?IntTreeNode left null; private ... | ||
| BreadthFirstSearchExample | 28 Apr 2005 - 11:50 - r1.6 | TWikiGuest |
| // compilation unit Bfs.nice package graph; // breadth first visit algorithm from BGL , GraphT void graphSearch( GraphT g, Vertex s, Visitor vis, ReadWritePropertyMap ... | ||
| BuilderPatternMultiMethodExample | 30 Jan 2004 - 19:45 - NEW | IsaacGouy |
| The BuilderPattern Director is written directly in main; and instead of creating multiple builder classes, we define default multi methods GeneratorMultiMethodExample ... | ||
| CodeExamples | 17 Jul 2005 - 09:45 - r1.57 | TWikiGuest |
| This section is a repository for code fragments and programs, for illustration purposes. Please create a specific page for each example. Its TWiki.WikiWord should ... | ||
| CollectionExample | 06 Jun 2003 - 18:22 - NEW | DanielBonniot |
| package test; void main(String args) { java.util.List frenchNumbers new ArrayList(); frenchNumbers.add("Zero"); frenchNumbers.add("Un"); frenchNumbers.add("Deux" ... | ||
| CompositePatternExample | 28 Apr 2005 - 11:50 - r1.6 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a composite.jar composite To run: java jar composite.jar / // Composite ... | ||
| DesignPatterns | 30 Jan 2003 - 17:32 - NEW | TWikiGuest |
| Nice has several features that makes dessignpatterns easier to use or it makes them more flexible. Show and/or discuss the variants of dessignpatterns in Nice. VisitorPattern ... | ||
| DevelopmentTools | 04 Mar 2005 - 09:54 - r1.9 | DanielBonniot |
| TOC Editors There is an Dev.EclipsePlugin for the http://www.eclipse.org Eclipse IDE . There is a Nice mode for Emacs included in the distribution. It highlights ... | ||
| DijkstraShortestPathsExample | 22 Apr 2005 - 11:20 - r1.6 | TWikiGuest |
| // compilation unit Dijkstra.nice package graph; , GraphT void dijkstraShortestPaths( GraphT g, Vertex s, ReadWritePropertyMap predecessor, ReadWritePropertyMap distance ... | ||
| DispatchIntermediateExample | 24 Dec 2003 - 21:32 - r1.2 | IsaacGouy |
| The original MultiJava code for this benchmark, and the Java comparison code, is available from this Technical Report: "MultiJava: Design, implementation, and evaluation ... | ||
| ExtendedTreeVisitorIntermediateExample | 05 Sep 2003 - 17:20 - NEW | IsaacGouy |
| // compilation unit MultiInterior.nice package openclassdispatch; public class MultiInterior extends Tree { private Tree children ; public Tree getChildren() children ... | ||
| ExtensibleVisitorPatternExample | 25 Apr 2005 - 12:26 - r1.6 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a extensible.jar extensible To run: java jar extensible.jar / // Extensible ... | ||
| FiboNoviceExample | 03 Apr 2005 - 16:15 - r1.11 | TWikiGuest |
| / From the command line 1) create a directory fibo 2) cd into directory fibo 3) save this source code as main.nice in directory fibo 4) compile the source code \fibo ... | ||
| FiniteStateMachineMultiMethodExample | 28 Apr 2005 - 11:50 - r1.6 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a benderfsm.jar benderfsm To run: java jar benderfsm.jar / private ... | ||
| FunctionalApproachExample | 28 Apr 2005 - 11:50 - r1.7 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a functional.jar functional To run: java jar functional.jar / // Functional ... | ||
| FunctionsAndMethods | 25 Jan 2004 - 21:37 - r1.7 | TWikiGuest |
| Methods are one of the main area where Nice differs from traditional object oriented languages. This difference makes Nice much more powerful, but it also requires ... | ||
| GeneratorMultiMethodExample | 30 Jan 2004 - 19:52 - NEW | IsaacGouy |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a builderpattern.jar builderpattern To run: java jar builderpattern ... | ||
| GenericProgrammingBeginnerExample | 10 Jan 2004 - 15:35 - r1.2 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. d . a generic.jar generic To run: java jar generic.jar / abstract interface ... | ||
| GetInvolved | 09 Jul 2005 - 18:24 - r1.7 | DanielBonniot |
| Thanks for your interest in getting involved! Nice is not pushed by a single company, but developed openly by a small team, in the spirit of free software. It will ... | ||
| GraphClassesExample | 28 Apr 2005 - 11:50 - r1.7 | TWikiGuest |
| // compilation unit ColorValue.nice package graph; public enum ColorValue {white, gray, black} // compilation unit HashPropertyMap.nice package graph; public class ... | ||
| GraphConceptsExample | 28 Apr 2005 - 11:50 - r1.7 | TWikiGuest |
| // compilation unit GraphConcepts.nice package graph; public interface GraphEdge { Vertex source(); Vertex target(); } Iterator forIterator(Iterator it) it; public ... | ||
| GraphParametricTypeExample | 22 Apr 2005 - 10:52 - r1.8 | TWikiGuest |
| http://www.osl.iu.edu/publications/pubs/2003/comparing generic programming03.pdf "A Comparative Study of Language Support for Generic Programming" used a sample of ... | ||
| GraphTestExample | 28 Apr 2005 - 11:50 - r1.7 | TWikiGuest |
| // compilation unit Tests.nice package graph; void main(String args){ println(""); println("Breadth First Search Test"); println(" "); bfsTest(); println(""); println ... | ||
| HashBeginnerExample | 10 Jan 2004 - 19:03 - r1.6 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a hash.jar hash To run: java jar hash.jar 150 / void main(String args ... | ||
| HaskellPreludeExample | 30 Jan 2003 - 00:07 - NEW | TWikiGuest |
| This is a large portion of the Haskell prelude, at least those parts which can be translated sensibly into Nice. This example is under construction. Still needs tests ... | ||
| HelloSwingWorld | 28 Apr 2005 - 11:50 - r1.6 | TWikiGuest |
| This example shows how to write a little more than a simple helloworld. When you move the mouse over the (inner part of the) Frame it will say hello, when you move ... | ||
| HelloSwtUserInterfaceExample | 28 Apr 2005 - 11:53 - r1.6 | TWikiGuest |
| / To compile: nicec classpath "niceswt.jar;swt.jar" a helloswt.jar helloswt To run: java cp swt.jar;helloswt.jar helloswt.fun / import nice.swt; import nice.swt.events ... | ||
| HelloWorld | 30 May 2003 - 01:46 - NEW | DanielBonniot |
| // in a file 'main.nice', in directory 'hello' // compile from the parent of 'test' package hello; void main(String ) { println("Hello, world"); } Main.DanielBonniot ... | ||
| HelloWorldNoviceExample | 10 Jan 2004 - 15:36 - r1.4 | IsaacGouy |
| / From the command line 1) create a directory hello 2) cd into directory hello 3) save this source code as main.nice in directory hello 4) compile the source code ... | ||
| HowToFightSpam | 28 Apr 2005 - 11:53 - r1.3 | TWikiGuest |
| I deleted some spammed topics today and I was wondering on how should we do it? I manually removed the spam using edit, preview save cycle (which is boring and I forgot ... | ||
| InstanceGeneratorMultiMethodExample | 28 Apr 2005 - 11:53 - r1.6 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a builderpattern.jar builderpattern To run: java jar builderpattern ... | ||
| JavaIntegration | 28 Apr 2005 - 11:53 - r1.4 | TWikiGuest |
| This page is about the use of Nice on the Java platform and with Java tools. Nice is not yet mainstream, so not supported natively by most tools. Luckilly, Nice is ... | ||
| JavaToggleExample | 17 Sep 2003 - 18:00 - r1.2 | IsaacGouy |
| / Please try the BeginnerExamples before the IntermediateExamples To compile: \methcall javac java toggle\ .java Let's put the files in a jar file so we can show ... | ||
| JohnsonAllPairsShortestPathsExample | 28 Apr 2005 - 11:53 - r1.6 | TWikiGuest |
| // compilation unit Johnson.nice package graph; , ReadWritePM boolean johnsonAllPairsShortestPaths( VertexListAndIncidenceAndEdgeListGraph graph, ReadablePropertyMap ... | ||
| KnownIssues | 08 Mar 2005 - 09:50 - r1.8 | TWikiGuest |
| A list of known limitations and problem with the current version of the compiler. A class/interface with a different number of type parameters than its super class ... | ||
| LanguageComparisons | 09 Mar 2005 - 23:36 - r1.9 | TWikiGuest |
| How does Nice compare to other programming languages? NiceVersusJava NiceVersusPizza NiceVersusScala NiceVersusBoo NiceVersusJython NiceVersusGroovy | ||
| LazyVectorExample | 30 Jan 2003 - 00:16 - NEW | TWikiGuest |
| LazyVector? is an example of a lazy data structure, one whose contents are computed only when they're actually examined. One nice thing you can do with a lazy data ... | ||
| ListsBeginnerExample | 10 Jan 2004 - 19:05 - r1.5 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a lists.jar lists To run: java jar lists.jar 16 / void main(String args ... | ||
| MavenGuide | 28 Apr 2005 - 11:53 - r1.8 | TWikiGuest |
| http://maven.apache.org Maven is a project management tool. Based on a single file defining your project, it is able to automatically build your program (tracking ... | ||
| MethcallBeginnerExample | 10 Jan 2004 - 19:04 - r1.6 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a methcall.jar methcall To run: java jar methcall.jar 1000000 / void main ... | ||
| MethcallIntermediateExample | 24 Dec 2003 - 21:36 - r1.4 | IsaacGouy |
| / Please try the BeginnerExamples before the IntermediateExamples We've already created jar file toggle.jar containing the the java implementation of the Toggle class ... | ||
| MethcallIntermediateTwoExample | 30 Aug 2003 - 15:30 - r1.2 | IsaacGouy |
| / Please try the BeginnerExamples before the IntermediateExamples Put this code in directory methcall intermediatetwo Compile the Nice Toggle class: NiceToggleExample ... | ||
| MomentsBeginnerExample | 10 Jan 2004 - 19:10 - r1.5 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a moments.jar moments To run: java jar moments.jar numbers new ArrayList ... | ||
| NativeHowto | 28 Apr 2005 - 11:54 - r1.6 | TWikiGuest |
| How to build a native compiled program that depends on gnu-crypto,swt(,poi) and/or nice with a crossed environment? You need to keep several issues in mind if you ... | ||
| NiceArticles | 20 Apr 2005 - 09:36 - r1.7 | TWikiGuest |
| This is a page to place links to articles on the web that refer to Nice. Articles about Nice: alt.lang.jre: Twice as Nice http://www-106.ibm.com/developerworks/library ... | ||
| NiceExpressions | 17 Dec 2003 - 10:44 - r1.2 | ArjanB |
| operator precedence operators type associativity () grouping none , . postfix left new prefix right , postfix left , , , , ~, ! prefix right binary right , /, binary ... | ||
| NiceGeneratorMultiMethodExample | 28 Apr 2005 - 11:54 - r1.6 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a builderpattern.jar builderpattern To run: java jar builderpattern ... | ||
| NiceGrammar | 17 Jun 2003 - 08:44 - r1.4 | ArjanB |
| Here the EBNF of Nice. This version may differ on detail with the parser, but it should be almost the same. If you are looking for operator precedence you can look ... | ||
| NiceInfo | 28 Apr 2005 - 11:54 - r1.4 | TWikiGuest |
| NiceInfo is the maing mailing list where users can ask questions about the language, request help with a specific problem, hear about plans to improve the language ... | ||
| NicePackages | 04 Oct 2003 - 16:57 - r1.2 | ChristianS |
| What for me was important to notice, is that if you use a java package you have to use the syntax import java.io. ; and it is not possible to simply import only one ... | ||
| NiceQuestions | 28 Apr 2005 - 11:54 - r1.25 | TWikiGuest |
| This section is for questions that people have about Nice, and may serve as the beginnings of an FAQ, if desired. Please don't post bugs here but submit them to the ... | ||
| NiceSwing | 31 May 2003 - 01:32 - r1.3 | TWikiGuest |
| On this page you will find the documentation of NiceSwing. I structured it a little like a FAQ not only because it made it somewhat easier for me to structure, but ... | ||
| NiceSwingFiles | 05 Feb 2004 - 18:05 - r1.5 | DanielBonniot |
| NiceSwing in a jar file The simplest is to http://nice.sourceforge.net/maven/nice/jars/nice-swing-SNAPSHOT.jar download this jar file . You can then compile NiceSwing ... | ||
| NiceToggleExample | 24 Dec 2003 - 21:35 - r1.2 | IsaacGouy |
| / Please try the BeginnerExamples before the IntermediateExamples Put this code in a subdirectory: methcall intermediatetwo\toggles To compile: nicec toggles / package ... | ||
| NiceTutorial | 22 Apr 2005 - 18:35 - r1.8 | TWikiGuest |
| This document is under construction. The original Nice tutorial was written some time ago, and it needs to be brought up to date and finished. Here we can work collaboratively ... | ||
| NiceVersusGroovy | 23 Apr 2005 - 15:25 - r1.4 | TWikiGuest |
| See the two blog articles by Main.BrynKeller: http://www.xoltar.org/2004/aug/07/nice-groovy.html Groovy features in Nice http://www.xoltar.org/2004/aug/09/nice-groovy ... | ||
| NiceVersusJython | 21 Aug 2003 - 18:52 - r1.5 | ArjanB |
| A near-copy of this page exists on Python's wiki, at http://www.python.org/cgi-bin/moinmoin/PythonVsNice . Added a few remarks in italic Main.ArjanB 20 Aug 2003 ... | ||
| NiceVersusPizza | 23 May 2003 - 13:01 - r1.3 | DanielBonniot |
| This page is an attempt to summarize the differences between Nice and Pizza. TOC Comparison of common features Type systems Both languages have type parameters. The ... | ||
| NiceVersusScala | 26 Jul 2005 - 07:21 - r1.22 | TWikiGuest |
| Scala http://scala.epfl.ch/index.html Scala has many things in common with Nice: "Scala is a modern multi-paradigm programming language designed to express common ... | ||
| NicecAntTaskdef | 28 Apr 2005 - 11:54 - r1.7 | TWikiGuest |
| To use the Nice compiler laso in an ant build script, we developed a task definition for it. Here you can see the documentation with some examples. Nicec Description ... | ||
| NumberFiveParametricTypeExample | 28 Apr 2005 - 11:54 - r1.8 | TWikiGuest |
| / Please try the NoviceExamples before these examples To compile: nicec sourcepath .. a numberfive.jar numberfive / T numberFive(){ return 5; } void main(String args ... | ||
| ObjinstBeginnerExample | 10 Jan 2004 - 19:05 - r1.4 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a objinst.jar objinst To run: java jar objinst.jar 1000000 / import methcall ... | ||
| OptionTypes | 14 Aug 2003 - 08:15 - r1.3 | TWikiGuest |
| In Java, every non-primitive type can contain the special value null . However, calling a method on null will throw a NullPointerException at runtime. For instance ... | ||
| PacketBenchExample | 02 Sep 2003 - 20:26 - NEW | DuncanLissett |
| package bench; let Packet NoPacket new Packet(); let int DataSize 4; enum PacketKind { Device, Work } enum PacketId { Idle, Worker, HandlerA, HandlerB, DeviceA, DeviceB ... | ||
| PowerSeriesCspExample | 28 Apr 2005 - 11:56 - r1.8 | TWikiGuest |
| This is an unusual use of the JCSP library. Normally the CSP processes are defined, created and then started. In this case, we spawn new processes as needed while ... | ||
| PrimMinimumSpanningTreeExample | 28 Apr 2005 - 11:55 - r1.7 | TWikiGuest |
| // compilation unit Prim.nice package graph; void primMinimumSpanningTree( VertexListAndIncidenceGraph graph, Vertex s, ReadWritePropertyMap predecessor, ReadWritePropertyMap ... | ||
| ProducerConsumerBeginnerExample | 10 Jan 2004 - 19:07 - r1.3 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples requires Nice 0.9.3 or above To compile: nicec sourcepath .. d . a prodcons.jar prodcons To run: java ... | ||
| ProjectsUsingNice | 07 Feb 2005 - 21:51 - r1.6 | BrynKeller |
| Projects using Nice http://flow4j.sf.net Flow4J A project that has more than 100 kb nice source code Main.ChristianS is using Nice as a major development language ... | ||
| QuickIntroduction | 27 Aug 2003 - 16:26 - r1.3 | IsaacGouy |
| Here are some suggestion to start learning about Nice. The http://nice.sourceforge.net/language.html tutorial give a short introduction to the most used features of ... | ||
| RandomBeginnerExample | 10 Jan 2004 - 15:42 - r1.3 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a random.jar random To run: java jar random.jar 900000 / import java.text ... | ||
| RecursiveParametricTypeExample | 28 Apr 2005 - 11:55 - r1.5 | TWikiGuest |
| / Please try the NoviceExamples before the ParametricTypeExamples To compile: nicec sourcepath .. a recursivetype.jar recursivetype To run: java jar recursivetype ... | ||
| SchedulerBenchExample | 02 Sep 2003 - 20:29 - NEW | DuncanLissett |
| package bench; let int MaxTasks 6; class Scheduler { private Tcb table new Tcb MaxTasks .fill(int index NoTcb); private Tcb list NoTcb; private Tcb currentTcb NoTcb ... | ||
| ScissorsPaperRockNoviceExample | 28 Apr 2005 - 11:55 - r1.6 | TWikiGuest |
| / From the command line 1) create a directory scissors 2) cd into directory scissors 3) save this source code as main.nice in directory scissors 4) compile the source ... | ||
| ShapesBeginnerExample | 10 Jan 2004 - 15:43 - r1.4 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a shapes.jar shapes / abstract class Shape { int x; int y; void moveTo ... | ||
| ShapesIntermediateExample | 24 Dec 2003 - 21:28 - r1.4 | IsaacGouy |
| / Please try the BeginnerExamples before the IntermediateExamples To compile: nicec sourcepath .. a shapes.jar shapes To run: java jar shapes.jar / // Let's assume ... | ||
| SieveBeginnerExample | 10 Jan 2004 - 15:44 - r1.3 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a sieve.jar sieve To run: java jar sieve.jar 900 / void main(String args ... | ||
| SimpleProducerConsumerCspExample | 28 Apr 2005 - 11:55 - r1.9 | TWikiGuest |
| / Please try the NoviceExamples before these examples To compile: nicec classpath "jcspclasses.jar;nice-csp.jar" sourcepath .. a prodcons.jar prodcons To run: java ... | ||
| SingletonPattern | 11 Jun 2003 - 20:02 - r1.3 | BrynKeller |
| In Java, creating a singleton class involves StaticMethods and StaticFields: package a; public class Single { public static Single getInstance() { return instance ... | ||
| SpellcheckBeginnerExample | 10 Jan 2004 - 19:06 - r1.4 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a spellcheck.jar spellcheck To run: java jar spellcheck.jar dictionary ... | ||
| StaticFieldsAndMethods | 11 Feb 2003 - 13:36 - r1.2 | TWikiGuest |
| Static methods A static method in Java is just a function (no dispatch) and it has no implicit 'this' parameter. So in Nice you can write a function instead (directly ... | ||
| StatisticsLinks | 27 Jan 2004 - 00:11 - NEW | DanielBonniot |
| http://sourceforge.net/project/stats/index.php?report months group id 12788 Page views and downloads on Sourceforge http://freshmeat.net/project-stats/view/38207 ... | ||
| StrcatBeginnerExample | 10 Jan 2004 - 19:06 - r1.4 | IsaacGouy |
| / Please try the NoviceExamples before the BeginnerExamples To compile: nicec sourcepath .. a strcat.jar strcat To run: java jar strcat.jar 40000 / void main(String ... | ||
| SuperCall | 14 Oct 2003 - 23:42 - r1.6 | RohanHart |
| This page documents the current super mechanism in Nice. It compares it with super in Java, and calls for discussion on ehancements. First, it does not make sense ... | ||
| SwingLibraryExample | 30 Jan 2003 - 01:38 - NEW | TWikiGuest |
| This example shows the way one can add and remove event listeners using the swing library. It uses new classes not present in cvs yet (See NiceGuiControlClasses for ... | ||
| TaskBenchExample | 03 Sep 2003 - 18:45 - r1.2 | DanielBonniot |
| package bench; interface ISchedulerTask { Tcb run(Packet packet); } / The Idle task counts how often it is activated ending the simulation when the aCount limit is ... | ||
| TcbBenchExample | 02 Sep 2003 - 20:27 - NEW | DuncanLissett |
| package bench; let Tcb NoTcb new Tcb(link: NoTcb, id: Idle, pri: 0, wkq: NoPacket); // Named bit masks to access 3 bit state value. let int RUNNABLE 1; let int SUSPENDED ... | ||
| ToolsNeedingImprovements | 28 Apr 2005 - 11:55 - r1.5 | TWikiGuest |
| These are current issues with external tools. You help with those, sometimes as simply as by voting to ask a bug to be fixed, or of course by working on the fix yourself ... | ||
| TreeVisitorClassesIntermediateExample | 05 Sep 2003 - 18:43 - NEW | IsaacGouy |
| // compilation unit Tree.nice package openclassdispatch; public class Tree { private !T value; // internal implementation of prettyPrinting to // measure regular ... | ||
| TreeVisitorIntermediateExample | 24 Dec 2003 - 21:34 - r1.3 | IsaacGouy |
| The original MultiJava code for this benchmark, and the Java comparison code, is available from this Technical Report: "MultiJava: Design, implementation, and evaluation ... | ||
| UnitTesting | 19 Apr 2005 - 10:31 - r1.8 | DanielBonniot |
| Usage The basic idea is that you write test methods inline with the code you want to test. package hello; // Functionality of the package public void printHello(PrintWriter ... | ||
| UserManual | 18 Feb 2003 - 16:19 - NEW | TWikiGuest |
| The UserManual is the main documentation for the Nice language. You can read it at http://nice.sf.net/manual.html DanielBonniot 18 Feb 2003 | ||
| UsingJavaFromNice | 07 Mar 2003 - 14:45 - r1.3 | AlexGreif |
| This topic gives some tips and hints how to use Java from Nice javanice package test; public class Foo { static public String sayHello() { System.out.println("hello ... | ||
| UsingNiceFromJava | 07 Mar 2003 - 13:23 - r1.2 | DanielBonniot |
| This topic gives some tips and hints how to use Nice from Java #NiceMethod java nice method #NiceMethod java nice method javanice package test; import java.util ... | ||
| VisitorPattern | 30 May 2003 - 11:20 - NEW | DanielBonniot |
| There is an http://nice.sourceforge.net/visitor.html article comparing the visitor pattern and multi-methods in Nice . Main.DanielBonniot 30 May 2003 | ||
| VisitorPatternExample | 28 Apr 2005 - 11:56 - r1.6 | TWikiGuest |
| / Please try the NoviceExamples before the MultiMethodExamples To compile: nicec sourcepath .. a visitor.jar visitor To run: java jar visitor.jar / // Visitor Pattern ... | ||
| VisitorPatternMultiMethodExample | 04 Apr 2005 - 10:57 - r1.7 | TWikiGuest |
| The first part of each example gives the existing datatypes and operations; the second part shows how we could add a datatype and how we could add an operation. There ... | ||
| WebChanges | 16 Aug 2001 - 19:58 - NEW | PeterThoeny? |
| INCLUDE{" TWIKIWEB .WebChanges"} | ||
| WebHome | 29 Dec 2004 - 11:41 - r1.25 | ArjanB |
| This is the place to document Nice. QuickIntroduction NiceTutorial KnownIssues CodeExamples NativeHowto NiceQuestions DesignPatterns LanguageComparisons NiceSwing ... | ||
| WebIndex | 28 Apr 2005 - 11:43 - r1.7 | TWikiGuest |
| SEARCH{"\. " scope "topic" regex "on" nosearch "on"} | ||
| WebNotify | 21 Jan 2004 - 03:32 - r1.6 | BrianSmith |
| This is a subscription service to be automatically notified by e-mail when topics change in this Doc web. This is a convenient service, so you do not have to come ... | ||
| WebPreferences | 06 Mar 2003 - 16:58 - r1.4 | AlexGreif |
| TWiki.Doc Web Preferences The following settings are web preferences of the TWiki.Doc web. These preferences overwrite the site-level preferences in TWIKIWEB . WIKIPREFSTOPIC ... | ||
| WebRss | 30 Jan 2003 - 08:15 - NEW | PeterThoeny? |
| TWiki's Doc web SCRIPTURL /view SCRIPTSUFFIX /Doc The Doc web of TWiki. TWiki is a Web-Based Collaboration Platform for the Corporate World. INCLUDE{" TWIKIWEB .WebRssBase ... | ||
| WebSearch | 08 Aug 2001 - 05:26 - NEW | PeterThoeny? |
| INCLUDE{" TWIKIWEB .WebSearch"} | ||
| WebStatistics | 07 Aug 2005 - 10:51 - r1.515 | TWikiGuest |
| Statistics for Doc Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic save and uploads: Aug 2005 814 0 0 96 QuickIntroduction ... | ||
| WebTopicList | 24 Nov 2001 - 11:40 - NEW | PeterThoeny? |
| TOPICLIST{" $name "} See also the verbose WebIndex. | ||
| WordfreqIntermediateExample | 02 Sep 2003 - 01:49 - r1.4 | IsaacGouy |
| / Please try the BeginnerExamples before the IntermediateExamples To compile: nicec sourcepath .. a wordfreq.jar wordfreq To run: java jar wordfreq.jar wordCounts ... | ||
| Topic WebIndex . { Edit | Attach | Ref-By | Printable | Diffs | r1.7 | > | r1.6 | > | r1.5 | More } |
|
Revision r1.7 - 28 Apr 2005 - 11:43 GMT - TWikiGuest Parents: WebHome |
Copyright © 1999-2003 by the contributing authors.
All material on this collaboration platform is the property of the contributing authors. Ideas, requests, problems regarding TWiki? Send feedback. |