| Topics in Doc web: | Changed: now 09:03 GMT | Changed by: |
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| PrimMinimumSpanningTreeExample | 28 Apr 2005 - 11:55 - r1.7 | TWikiGuest |
| // compilation unit Prim.nice package graph; void primMinimumSpanningTree( VertexListAndIncidenceGraph graph, Vertex s, ReadWritePropertyMap predecessor, ReadWritePropertyMap ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| JohnsonAllPairsShortestPathsExample | 28 Apr 2005 - 11:53 - r1.6 | TWikiGuest |
| // compilation unit Johnson.nice package graph; , ReadWritePM boolean johnsonAllPairsShortestPaths( VertexListAndIncidenceAndEdgeListGraph graph, ReadablePropertyMap ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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, | ||
| BellmanFordShortestPathsExample | 28 Apr 2005 - 11:50 - r1.6 | TWikiGuest |
| // compilation unit BellmanFord.nice package graph; boolean bellmanFordShortestPaths( EdgeListGraph graph, int size, ReadablePropertyMap weightMap, ReadWritePropertyMap ... | ||
| 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 ... | ||
| WebIndex | 28 Apr 2005 - 11:43 - r1.7 | TWikiGuest |
| SEARCH{"\. " scope "topic" regex "on" nosearch "on"} | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| LanguageComparisons | 09 Mar 2005 - 23:36 - r1.9 | TWikiGuest |
| How does Nice compare to other programming languages? NiceVersusJava NiceVersusPizza NiceVersusScala NiceVersusBoo NiceVersusJython NiceVersusGroovy | ||
| 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 ... | ||
| 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 ... | ||
| 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 ... | ||
| Topic WebChanges . { Edit | Attach | Ref-By | Printable | Diffs | r1.1 | More } |
|
Revision r1.1 - 16 Aug 2001 - 19:58 GMT - PeterThoeny? 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. |