typo
authorjprocter <Jim Procter>
Tue, 27 Oct 2009 14:41:28 +0000 (14:41 +0000)
committerjprocter <Jim Procter>
Tue, 27 Oct 2009 14:41:28 +0000 (14:41 +0000)
doc/newdmobj.html

index 68198fd..8ad264a 100644 (file)
@@ -5,7 +5,7 @@
 <body>\r
 <h1>Adding New Datamodel Objects To Jalview</h1>\r
 <p>There are some basic requirements for all Jalview datamodel objects. None of them are mandatory, but each one makes it easier to integrate a new datamodel object into Jalview.</p>\r
-<p>The primary requirement of classes within jalviw.datamodel is that all class implementations must be byte-code compatible with a java 1.1 runtime environment. This is an imposition from the Jalview applet, which is dependent on the core jalview.datamodel package. It is possible to include dependencies to objects which are not available to the JRE1.1 environment, providing you ensure that a test is made at run-time to decide if these dependencies are followed within any particular method. But generally, it is best to stick to 1.1 coding style - that is no generics, no fancy Iterators or use of specific JRE object methods and interfaces introduced after 1.1 (such as the get method for java.util.Vector).</p>\r
+<p>The primary requirement of classes within jalview.datamodel is that all class implementations must be byte-code compatible with a java 1.1 runtime environment. This is an imposition from the Jalview applet, which is dependent on the core jalview.datamodel package. It is possible to include dependencies to objects which are not available to the JRE1.1 environment, providing you ensure that a test is made at run-time to decide if these dependencies are followed within any particular method. But generally, it is best to stick to 1.1 coding style - that is no generics, no fancy Iterators or use of specific JRE object methods and interfaces introduced after 1.1 (such as the get method for java.util.Vector).</p>\r
 <p><h3>Steps for integrating a new class into the datamodel</h3>\r
 <ol><li>Implement in Java 1.1 compatible source.</li>\r
 <li>Implement copy constructors for the benefit of any datamodel classes that reference it:\r