fsml-cvs Mailing List for File Structure Markup Language (FSML)
Status: Beta
Brought to you by:
bergquistj
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
(5) |
Apr
(2) |
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: bigdragon <jun...@us...> - 2005-06-16 18:43:11
|
Update of /cvsroot/fsml/FSML In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28929 Added Files: .classpath .project Log Message: --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>FSML</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path=""/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="build"/> </classpath> |
From: bigdragon <jun...@us...> - 2005-06-16 18:43:11
|
Update of /cvsroot/fsml/FSML/.settings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28929/.settings Added Files: org.eclipse.jdt.core.prefs Log Message: --- NEW FILE: org.eclipse.jdt.core.prefs --- #Thu Jun 16 13:15:54 GMT-05:00 2005 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 org.eclipse.jdt.core.compiler.compliance=1.5 org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.source=1.5 |
From: bigdragon <jun...@us...> - 2005-06-16 18:43:05
|
Update of /cvsroot/fsml/FSML/.settings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28883/.settings Log Message: Directory /cvsroot/fsml/FSML/.settings added to the repository |
From: J B. <ber...@us...> - 2005-04-07 14:55:38
|
Update of /cvsroot/fsml/FSML/dtd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10867 Added Files: FSMLv2.9.dtd Log Message: Added v 2.9 of the DTD to the repository. --- NEW FILE: FSMLv2.9.dtd --- <!-- FSML.dtd (File Structure Markup Language) File Description: XML DTD for representing a text file's structure Version: 2.9 Date of Last Revision: February, 9 2004 Contact: Eric Wood(wo...@sh...) Namespace: none Notes: This revision provides the ability set wether or not blank values should be ignored, or reported as an error $Log: FSMLv2.9.dtd,v $ Revision 1.1 2005/04/07 14:55:29 bergquistj Added v 2.9 of the DTD to the repository. Revision 1.1 2004/02/10 20:08:46 dyuan Add tests for MIT5D input data Revision 1.6 2004/02/10 17:59:04 wood Fixed syntax error in DTD Revision 1.5 2004/02/09 21:40:12 wood Added attribute for ignoring missing values during fixed format read Revision 1.1 2003/11/19 15:27:47 bcanaday Added data files to support FsmlProcessorTest. These files (from "letheval") provide a data value with a trailing comma ( 0.3048, ) which is revealing a bug in DefaultFsmlFileReader Revision 1.3 2003/11/18 22:26:16 wood Added an attribute to FileTypeSpecification to specify a set of delimiters that may seperate values in the file for free read. Revision 1.2 2003/09/02 19:44:17 wood Corrected typo. FSML stands for File Structure Markup Language. Revision 1.1 2003/09/02 19:33:49 wood Initial addition to repository --> <!ENTITY % FILE_DATA_CM " (Integer | Float | String | Array)+ "> <!ENTITY % DATA_CM " EMPTY " > <!ENTITY % DATA_ATT " name ID #REQUIRED description CDATA #IMPLIED units CDATA #IMPLIED group CDATA #IMPLIED " > <!ENTITY % FILE_STRUCTURE_CM " (Record | Loop | Condition | StaticText)+ "> <!ENTITY % OPS " (GT | LT | EQ | NE) "> <!ENTITY % RECORD_CM " SetValue | SetDims | SetSize | AddValue | Loop | Condition | Separator "> <!ENTITY % OPERATION_ATTS " target IDREF #REQUIRED "> <!ENTITY % MUTATOR_ATTS " %OPERATION_ATTS; "> <!ELEMENT FileTypeSpecification (FileData,FileStructure)> <!ATTLIST FileTypeSpecification type CDATA #IMPLIED description CDATA #IMPLIED lineCommentStart CDATA #IMPLIED blockCommentStart CDATA #IMPLIED blockCommentEnd CDATA #IMPLIED ignoreBlankLines (true | false) "true" delimiters CDATA #IMPLIED ignoreMissingValues (true | false) "false"> <!ELEMENT FileData %FILE_DATA_CM;> <!ELEMENT Integer %DATA_CM; > <!ATTLIST Integer %DATA_ATT; > <!ELEMENT Float %DATA_CM; > <!ATTLIST Float %DATA_ATT; > <!ELEMENT String %DATA_CM; > <!ATTLIST String %DATA_ATT; > <!ELEMENT Array %DATA_CM; > <!ATTLIST Array %DATA_ATT; ndims CDATA #REQUIRED dims CDATA #REQUIRED baseType (String | Integer | Float) #REQUIRED > <!ELEMENT Dim EMPTY > <!ATTLIST Dim size CDATA #IMPLIED > <!ELEMENT FileStructure %FILE_STRUCTURE_CM;> <!ELEMENT StaticText (#PCDATA) > <!ELEMENT Record (%RECORD_CM;)+> <!ATTLIST Record ignoreOnRead (true | false) #REQUIRED format CDATA #IMPLIED ignoreFormatOnRead (true | false) #IMPLIED > <!ELEMENT SetValue EMPTY > <!ATTLIST SetValue %MUTATOR_ATTS; > <!ELEMENT AddValue EMPTY > <!ATTLIST AddValue %MUTATOR_ATTS; > <!ELEMENT SetDims EMPTY > <!ATTLIST SetDims %OPERATION_ATTS; dims CDATA #REQUIRED > <!ELEMENT SetSize EMPTY > <!ATTLIST SetSize %OPERATION_ATTS; dimIndex CDATA #REQUIRED size CDATA #REQUIRED > <!ELEMENT Loop (%RECORD_CM; | Record)+> <!ATTLIST Loop loopVariable CDATA #IMPLIED start CDATA #REQUIRED end CDATA #REQUIRED incr CDATA #REQUIRED check CDATA #IMPLIED operator %OPS; #IMPLIED checkValue CDATA #IMPLIED doOnce (true | false) #IMPLIED stopOnEof (true | false) #IMPLIED > <!ELEMENT Condition (%RECORD_CM; | Record | StaticText)+> <!ATTLIST Condition check CDATA #REQUIRED operator %OPS; #REQUIRED checkValue CDATA #REQUIRED > <!ELEMENT Separator EMPTY> <!ATTLIST Separator ignoreOnRead (true | false) #REQUIRED string CDATA #REQUIRED repeat CDATA #IMPLIED > |
From: J B. <ber...@us...> - 2005-04-07 14:50:25
|
Update of /cvsroot/fsml/FSML/dtd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7993/dtd Log Message: Directory /cvsroot/fsml/FSML/dtd added to the repository |
Update of /cvsroot/fsml/FSML/src/com/saic/ship/fsml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31213/src/com/saic/ship/fsml Modified Files: DefaultFsmlFileWriter.java EOFException.java Format.java Fsml2ndLevelValidation.java FsmlDataTypes.java FsmlDocument.java FsmlFileDataListener.java FsmlFileReader.java FsmlFileStructureListener.java FsmlFileWriter.java FsmlOperatorTypes.java FsmlParameter.java FsmlParameterValues.java FsmlParameters.java FsmlProcessor.java InvalidFormatException.java Log Message: Fixed @see tags a second time. Documentation now processes correctly in javadoc. Index: FsmlParameter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameter.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FsmlParameter.java 3 Mar 2005 19:59:23 -0000 1.6 --- FsmlParameter.java 3 Mar 2005 20:12:10 -0000 1.7 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlParameter.java_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 20:12:10 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.6 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 90,94 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameters FsmlDocument FsmlProcessor FsmlFileReader FsmlFileWriter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 94,102 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameters ! * @see FsmlDocument ! * @see FsmlProcessor ! * @see FsmlFileReader ! * @see FsmlFileWriter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: DefaultFsmlFileWriter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/DefaultFsmlFileWriter.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DefaultFsmlFileWriter.java 3 Mar 2005 19:59:23 -0000 1.7 --- DefaultFsmlFileWriter.java 3 Mar 2005 20:12:09 -0000 1.8 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_DefaultFsmlFileWriter_cvs CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.7 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 105,109 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileWriter FsmlFileStructureListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 109,114 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileWriter ! * @see FsmlFileStructureListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: EOFException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/EOFException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** EOFException.java 3 Mar 2005 19:59:23 -0000 1.3 --- EOFException.java 3 Mar 2005 20:12:09 -0000 1.4 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_EOFException.java_cvs CVS Revision History * $Log$ + * Revision 1.4 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.3 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 62,66 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader FsmlFileWriter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 66,71 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader ! * @see FsmlFileWriter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: Format.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/Format.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Format.java 3 Mar 2005 19:59:23 -0000 1.7 --- Format.java 3 Mar 2005 20:12:09 -0000 1.8 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_Format.java_cvs CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.7 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 85,89 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see MultiFormat FormatCache * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 89,94 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see MultiFormat ! * @see FormatCache * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlParameters.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameters.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlParameters.java 3 Mar 2005 19:59:23 -0000 1.4 --- FsmlParameters.java 3 Mar 2005 20:12:10 -0000 1.5 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlParameters.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 20:12:10 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.4 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 80,84 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlProcessor FsmlDocument FsmlFileWriter FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 84,91 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlProcessor ! * @see FsmlDocument ! * @see FsmlFileWriter ! * @see FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlDocument.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlDocument.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FsmlDocument.java 3 Mar 2005 19:59:23 -0000 1.7 --- FsmlDocument.java 3 Mar 2005 20:12:09 -0000 1.8 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlDocument.java_cvs CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.7 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 128,132 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlErrorHandler FsmlFileStructureListener FsmlFileDataListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 132,138 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlErrorHandler ! * @see FsmlFileStructureListener ! * @see FsmlFileDataListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: Fsml2ndLevelValidation.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/Fsml2ndLevelValidation.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Fsml2ndLevelValidation.java 3 Mar 2005 19:59:23 -0000 1.7 --- Fsml2ndLevelValidation.java 3 Mar 2005 20:12:09 -0000 1.8 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_Fsml2ndLevelValidation.java_cvs CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.7 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 84,88 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlValidation FsmlDocument FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 88,94 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlValidation ! * @see FsmlDocument ! * @see FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlParameterValues.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameterValues.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlParameterValues.java 3 Mar 2005 19:59:23 -0000 1.5 --- FsmlParameterValues.java 3 Mar 2005 20:12:10 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlParameterValues.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:10 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 80,84 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter FsmlParameters FsmlFileWriter FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 84,91 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter ! * @see FsmlParameters ! * @see FsmlFileWriter ! * @see FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: InvalidFormatException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/InvalidFormatException.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** InvalidFormatException.java 3 Mar 2005 19:59:23 -0000 1.5 --- InvalidFormatException.java 3 Mar 2005 20:12:10 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_InvalidFormatException.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:10 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 70,74 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Format MultiFormat * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 74,79 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Format ! * @see MultiFormat * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlFileDataListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileDataListener.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlFileDataListener.java 3 Mar 2005 19:59:23 -0000 1.5 --- FsmlFileDataListener.java 3 Mar 2005 20:12:09 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlFileDataListener.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 76,80 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlDocument FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 80,85 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlDocument ! * @see FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlFileStructureListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileStructureListener.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FsmlFileStructureListener.java 3 Mar 2005 19:59:23 -0000 1.7 --- FsmlFileStructureListener.java 3 Mar 2005 20:12:09 -0000 1.8 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlFileStructureListener_cvs CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.7 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 96,100 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader FsmlFileWriter FsmlDocument FsmlProcessor * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 100,107 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader ! * @see FsmlFileWriter ! * @see FsmlDocument ! * @see FsmlProcessor * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: FsmlFileReader.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileReader.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FsmlFileReader.java 3 Mar 2005 19:59:23 -0000 1.7 --- FsmlFileReader.java 3 Mar 2005 20:12:09 -0000 1.8 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlFileReader.java_cvs CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.7 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 95,99 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see DefaultFsmlFileReader FsmlFileStructureListener * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 99,104 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see DefaultFsmlFileReader ! * @see FsmlFileStructureListener * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: FsmlOperatorTypes.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlOperatorTypes.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlOperatorTypes.java 3 Mar 2005 19:59:23 -0000 1.5 --- FsmlOperatorTypes.java 3 Mar 2005 20:12:09 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlOperatorTypes.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 71,75 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlDocument FsmlParameter FsmlParameterValues * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 75,81 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlDocument ! * @see FsmlParameter ! * @see FsmlParameterValues * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlProcessor.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlProcessor.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlProcessor.java 3 Mar 2005 19:59:23 -0000 1.5 --- FsmlProcessor.java 3 Mar 2005 20:12:10 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlProcessor_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:10 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 77,81 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter FsmlDocument * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 81,86 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter ! * @see FsmlDocument * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: FsmlFileWriter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileWriter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlFileWriter.java 3 Mar 2005 19:59:23 -0000 1.5 --- FsmlFileWriter.java 3 Mar 2005 20:12:09 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlFileWriter.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 84,88 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter DefaultFsmlFileWriter FsmlFileStructureListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 88,94 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter ! * @see DefaultFsmlFileWriter ! * @see FsmlFileStructureListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlDataTypes.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlDataTypes.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlDataTypes.java 3 Mar 2005 19:59:23 -0000 1.5 --- FsmlDataTypes.java 3 Mar 2005 20:12:09 -0000 1.6 *************** *** 31,34 **** --- 31,38 ---- * @page com.saic.ship.fsml_FsmlDataTypes.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 20:12:09 bergquistj + * Fixed @see tags a second time. Documentation now processes correctly in + * javadoc. + * * Revision 1.5 2005/03/03 19:59:23 bergquistj * Updated @see tags to properly reference related classes. *************** *** 73,77 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter FsmlFileDataListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 77,82 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter ! * @see FsmlFileDataListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ |
Update of /cvsroot/fsml/FSML/src/com/saic/ship/fsml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27356/src/com/saic/ship/fsml Modified Files: DefaultFsmlFileReader.java DefaultFsmlFileWriter.java DefaultFsmlProcessor.java EOFException.java Format.java FormatCache.java Fsml2ndLevelValidation.java FsmlDataTypes.java FsmlDocument.java FsmlErrorHandler.java FsmlException.java FsmlFileDataListener.java FsmlFileReader.java FsmlFileStructureListener.java FsmlFileWriter.java FsmlOperatorTypes.java FsmlParameter.java FsmlParameterValues.java FsmlParameters.java FsmlProcessor.java FsmlValidation.java FsmlValidatorUI.java InvalidFormatException.java InvalidIdRefException.java MultiFormat.java RecordBasedFileReader.java ValidationListener.java ValueNotFoundException.java Log Message: Updated @see tags to properly reference related classes. Index: FsmlParameter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlParameter.java 3 Mar 2005 17:09:03 -0000 1.5 --- FsmlParameter.java 3 Mar 2005 19:59:23 -0000 1.6 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlParameter.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.5 2005/03/03 17:09:03 bergquistj * Updated class description a bit. *************** *** 87,91 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 90,94 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameters FsmlDocument FsmlProcessor FsmlFileReader FsmlFileWriter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 122,125 **** --- 125,132 ---- //@{ + /** + * Parameter name + * + */ private String name; private int datatype; *************** *** 220,223 **** --- 227,235 ---- //@{ + /** + * Returns the name of this parameter. + * + * @return a <code>String</code> value + */ public String toString() { return name; Index: DefaultFsmlFileWriter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/DefaultFsmlFileWriter.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DefaultFsmlFileWriter.java 2 Mar 2005 15:21:27 -0000 1.6 --- DefaultFsmlFileWriter.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_DefaultFsmlFileWriter_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 102,106 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 105,109 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileWriter FsmlFileStructureListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: Format.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/Format.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Format.java 2 Mar 2005 15:21:27 -0000 1.6 --- Format.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_Format.java_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 82,86 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 85,89 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see MultiFormat FormatCache * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlParameters.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameters.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FsmlParameters.java 3 Mar 2005 16:11:48 -0000 1.3 --- FsmlParameters.java 3 Mar 2005 19:59:23 -0000 1.4 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlParameters.java_cvs CVS Revision History * $Log$ + * Revision 1.4 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.3 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 77,81 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 80,84 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlProcessor FsmlDocument FsmlFileWriter FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 112,115 **** --- 115,122 ---- //@{ + /** + * Index of parameters. + * + */ private Map parameterIndex = new Hashtable(); Index: FsmlDocument.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlDocument.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FsmlDocument.java 2 Mar 2005 15:21:27 -0000 1.6 --- FsmlDocument.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlDocument.java_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 125,129 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 128,132 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlErrorHandler FsmlFileStructureListener FsmlFileDataListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 160,163 **** --- 163,170 ---- //@{ + /** + * URL for the fsml file + * + */ private String fsmlUrl; private Document dom; Index: DefaultFsmlFileReader.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/DefaultFsmlFileReader.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DefaultFsmlFileReader.java 2 Mar 2005 16:01:38 -0000 1.7 --- DefaultFsmlFileReader.java 3 Mar 2005 19:59:22 -0000 1.8 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml.DefaultFsmlFileReader CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 19:59:22 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.7 2005/03/02 16:01:38 j * Added EOFException as its own class. *************** *** 110,114 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 113,117 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 144,147 **** --- 147,154 ---- //@{ + /** + * Input stream for reading. + * + */ private InputStream in; private RecordBasedFileReader reader; *************** *** 162,165 **** --- 169,176 ---- //@{ + /** + * No argument constructor does nothing. + * + */ public DefaultFsmlFileReader() { } Index: FsmlFileDataListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileDataListener.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlFileDataListener.java 3 Mar 2005 16:59:59 -0000 1.4 --- FsmlFileDataListener.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlFileDataListener.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:59:59 bergquistj * Added code template, method documentation, and headers. *************** *** 73,77 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 76,80 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlDocument FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: ValueNotFoundException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/ValueNotFoundException.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ValueNotFoundException.java 1 Mar 2005 16:15:05 -0000 1.5 --- ValueNotFoundException.java 3 Mar 2005 19:59:23 -0000 1.6 *************** *** 32,35 **** --- 32,38 ---- * * $Log$ + * Revision 1.6 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.5 2005/03/01 16:15:05 j * Fixed syntax error. *************** *** 73,77 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 76,80 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 109,112 **** --- 112,119 ---- //@{ + /** + * Name of the variable for exception + * + */ private String variableName; Index: FsmlFileReader.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileReader.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FsmlFileReader.java 3 Mar 2005 17:00:00 -0000 1.6 --- FsmlFileReader.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlFileReader.java_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/03 17:00:00 bergquistj * Added code template, method documentation, and headers. *************** *** 92,96 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 95,99 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see DefaultFsmlFileReader FsmlFileStructureListener * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: FsmlOperatorTypes.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlOperatorTypes.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlOperatorTypes.java 3 Mar 2005 16:11:48 -0000 1.4 --- FsmlOperatorTypes.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlOperatorTypes.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 68,72 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 71,75 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlDocument FsmlParameter FsmlParameterValues * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlParameterValues.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameterValues.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlParameterValues.java 3 Mar 2005 16:11:48 -0000 1.4 --- FsmlParameterValues.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlParameterValues.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 77,81 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 80,84 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter FsmlParameters FsmlFileWriter FsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 112,115 **** --- 115,122 ---- //@{ + /** + * Map of parameters and values. + * + */ private Map parameters; Index: FsmlDataTypes.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlDataTypes.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlDataTypes.java 1 Mar 2005 15:08:49 -0000 1.4 --- FsmlDataTypes.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlDataTypes.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/01 15:08:49 j * Updated code templates. *************** *** 70,74 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 73,77 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter FsmlFileDataListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: DefaultFsmlProcessor.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/DefaultFsmlProcessor.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DefaultFsmlProcessor.java 2 Mar 2005 15:21:27 -0000 1.7 --- DefaultFsmlProcessor.java 3 Mar 2005 19:59:23 -0000 1.8 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_DefaultFsmlProcessor CVS Revision History * $Log$ + * Revision 1.8 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.7 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 136,140 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 139,143 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FormatCache.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FormatCache.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FormatCache.java 2 Mar 2005 15:21:27 -0000 1.6 --- FormatCache.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FormatCache.java_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 72,80 **** * Class to cache format information. This class is a singleton. * - * <p> More detailled class description - * * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 75,81 ---- * Class to cache format information. This class is a singleton. * * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Format * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 91,96 **** //@{ - private static FormatCache instance = new FormatCache(); - /** * Logger for this class --- 92,95 ---- *************** *** 98,101 **** --- 97,102 ---- private static Logger logger = Logger.getLogger(FormatCache.class); + private static FormatCache instance = new FormatCache(); + //@} *************** *** 123,127 **** //@{ ! private Hashtable cache; --- 124,132 ---- //@{ ! /** ! * Hashtable for cache. ! * ! */ ! private Hashtable cache; Index: EOFException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/EOFException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EOFException.java 3 Mar 2005 17:09:03 -0000 1.2 --- EOFException.java 3 Mar 2005 19:59:23 -0000 1.3 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_EOFException.java_cvs CVS Revision History * $Log$ + * Revision 1.3 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.2 2005/03/03 17:09:03 bergquistj * Updated class description a bit. *************** *** 59,63 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 62,66 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader FsmlFileWriter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlProcessor.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlProcessor.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlProcessor.java 28 Feb 2005 18:17:11 -0000 1.4 --- FsmlProcessor.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlProcessor_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/02/28 18:17:11 j * Added GPL to code headers. *************** *** 74,78 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 77,81 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter FsmlDocument * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: FsmlException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlException.java 3 Mar 2005 16:11:48 -0000 1.4 --- FsmlException.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlException.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 67,71 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 70,74 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlValidatorUI.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlValidatorUI.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlValidatorUI.java 3 Mar 2005 16:11:48 -0000 1.4 --- FsmlValidatorUI.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlValidatorUI.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 99,108 **** * @author Created By: <a href="mailto:bca...@sh..."> Brent Canaday </a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ * @version $Revision$ * ! * @todo: re-factor this class using log4j */ public class FsmlValidatorUI extends JFrame { --- 102,111 ---- * @author Created By: <a href="mailto:bca...@sh..."> Brent Canaday </a> * @author Last Revised By: $Author$ ! * @see FsmlValidation * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ * @version $Revision$ * ! * @todo re-factor this class using log4j */ public class FsmlValidatorUI extends JFrame { *************** *** 145,148 **** --- 148,155 ---- //@{ + /** + * Map to store parameters + * + */ private HashMap hmapParameters = null; *************** *** 518,521 **** --- 525,532 ---- //@{ + /** + * Class to capture logging information on an output stream. + * + */ class LogOutputStream extends OutputStream { public LogOutputStream() { Index: FsmlValidation.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlValidation.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlValidation.java 3 Mar 2005 16:11:48 -0000 1.5 --- FsmlValidation.java 3 Mar 2005 19:59:23 -0000 1.6 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlValidation.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.5 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 79,83 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 82,86 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlValidatorUI * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 114,117 **** --- 117,124 ---- //@{ + /** + * Dialog for viewing validation + * + */ private JDialog dialog; private JTextArea resultsText; Index: Fsml2ndLevelValidation.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/Fsml2ndLevelValidation.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Fsml2ndLevelValidation.java 2 Mar 2005 15:21:27 -0000 1.6 --- Fsml2ndLevelValidation.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_Fsml2ndLevelValidation.java_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 81,85 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 84,88 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlValidation FsmlDocument FsmlProcessor * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 117,121 **** //@{ ! private Document dom; private Vector checkedAtts; private GenericErrorHandler eh; --- 120,128 ---- //@{ ! /** ! * dom implementation for document ! * ! */ ! private Document dom; private Vector checkedAtts; private GenericErrorHandler eh; Index: RecordBasedFileReader.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/RecordBasedFileReader.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RecordBasedFileReader.java 2 Mar 2005 16:01:38 -0000 1.4 --- RecordBasedFileReader.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_RecordBasedFileReader.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/02 16:01:38 j * Added EOFException as its own class. *************** *** 63,67 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 66,70 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see DefaultFsmlFileReader * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 98,101 **** --- 101,108 ---- //@{ + /** + * Describe variable <code>bytes</code> here. + * + */ private byte[] bytes; private int pointer = 0; Index: ValidationListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/ValidationListener.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ValidationListener.java 1 Mar 2005 15:08:49 -0000 1.5 --- ValidationListener.java 3 Mar 2005 19:59:23 -0000 1.6 *************** *** 33,36 **** --- 33,39 ---- * * $Log$ + * Revision 1.6 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.5 2005/03/01 15:08:49 j * Updated code templates. *************** *** 74,78 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 77,81 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlValidatorUI * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ Index: FsmlErrorHandler.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlErrorHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlErrorHandler.java 3 Mar 2005 16:11:48 -0000 1.4 --- FsmlErrorHandler.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlErrorHandler.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 73,77 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 76,80 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlException * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 109,112 **** --- 112,119 ---- //@{ + /** + * Vector to store errors. + * + */ private Vector errors; private int numErrors = 0; Index: MultiFormat.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/MultiFormat.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MultiFormat.java 28 Feb 2005 18:17:11 -0000 1.4 --- MultiFormat.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_MultiFormat_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/02/28 18:17:11 j * Added GPL to code headers. *************** *** 67,75 **** /** ! * @todo: write a description for this class. * * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 70,78 ---- /** ! * @todo write a description for this class. * * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Format * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: FsmlFileStructureListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileStructureListener.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FsmlFileStructureListener.java 3 Mar 2005 17:00:00 -0000 1.6 --- FsmlFileStructureListener.java 3 Mar 2005 19:59:23 -0000 1.7 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlFileStructureListener_cvs CVS Revision History * $Log$ + * Revision 1.7 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.6 2005/03/03 17:00:00 bergquistj * Added code template, method documentation, and headers. *************** *** 93,97 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ --- 96,100 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlFileReader FsmlFileWriter FsmlDocument FsmlProcessor * @since Created On: yyyy/mm/dd * @since Last Revised on: $Date$ Index: InvalidIdRefException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/InvalidIdRefException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InvalidIdRefException.java 2 Mar 2005 15:21:27 -0000 1.4 --- InvalidIdRefException.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_InvalidIdRefException.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 68,72 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 71,75 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 103,106 **** --- 106,113 ---- //@{ + /** + * Element instance for this class. + * + */ private Element element; private Attr attribute; Index: InvalidFormatException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/InvalidFormatException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InvalidFormatException.java 2 Mar 2005 15:21:27 -0000 1.4 --- InvalidFormatException.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_InvalidFormatException.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/02 15:21:27 j * Updated code templates and documentation. *************** *** 67,71 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 70,74 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Format MultiFormat * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ *************** *** 103,108 **** //@{ ! private Element element; ! private Attr attribute; //@} --- 106,115 ---- //@{ ! /** ! * Element member ! * ! */ ! private Element element; ! private Attr attribute; //@} Index: FsmlFileWriter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileWriter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlFileWriter.java 3 Mar 2005 16:11:48 -0000 1.4 --- FsmlFileWriter.java 3 Mar 2005 19:59:23 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlFileWriter.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 19:59:23 bergquistj + * Updated @see tags to properly reference related classes. + * * Revision 1.4 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 81,85 **** * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see Related classes * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ --- 84,88 ---- * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> * @author Last Revised By: $Author$ ! * @see FsmlParameter DefaultFsmlFileWriter FsmlFileStructureListener * @since Created On: 2005/03/01 * @since Last Revised on: $Date$ |
From: J B. <ber...@us...> - 2005-03-03 17:09:34
|
Update of /cvsroot/fsml/FSML/src/com/saic/ship/fsml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9976/src/com/saic/ship/fsml Modified Files: EOFException.java FsmlParameter.java Log Message: Updated class description a bit. Index: FsmlParameter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameter.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FsmlParameter.java 3 Mar 2005 17:00:00 -0000 1.4 --- FsmlParameter.java 3 Mar 2005 17:09:03 -0000 1.5 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlParameter.java_cvs CVS Revision History * $Log$ + * Revision 1.5 2005/03/03 17:09:03 bergquistj + * Updated class description a bit. + * * Revision 1.4 2005/03/03 17:00:00 bergquistj * Added code template, method documentation, and headers. *************** *** 78,84 **** /** ! * Brief class description ! * ! * <p> More detailled class description * * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> --- 81,87 ---- /** ! * FsmlParameter encapsulates parametric information (name, datatype, ! * description, units, etc) for the FSML specification. FsmlParameter is the ! * unit class for all parametric operations within FSML. * * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> Index: EOFException.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/EOFException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EOFException.java 2 Mar 2005 16:01:38 -0000 1.1 --- EOFException.java 3 Mar 2005 17:09:03 -0000 1.2 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_EOFException.java_cvs CVS Revision History * $Log$ + * Revision 1.2 2005/03/03 17:09:03 bergquistj + * Updated class description a bit. + * * Revision 1.1 2005/03/02 16:01:38 j * Added EOFException as its own class. *************** *** 50,55 **** /** - * Brief class description - * * Class to encapsulate exceptions encountered at End of File. Thrown when * attempt to read past end of file. Calls the superclass constructor --- 53,56 ---- |
From: J B. <ber...@us...> - 2005-03-03 17:00:10
|
Update of /cvsroot/fsml/FSML/src/com/saic/ship/fsml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6885/src/com/saic/ship/fsml Modified Files: FsmlFileDataListener.java FsmlFileReader.java FsmlFileStructureListener.java FsmlParameter.java Log Message: Added code template, method documentation, and headers. Index: FsmlParameter.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlParameter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FsmlParameter.java 3 Mar 2005 16:11:48 -0000 1.3 --- FsmlParameter.java 3 Mar 2005 17:00:00 -0000 1.4 *************** *** 14,23 **** * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. * */ ! /* * $Log$ * Revision 1.3 2005/03/03 16:11:48 bergquistj ! * Added convention-compliant code templates, comments, and header documentation. * * Revision 1.2 2005/02/28 18:17:11 j --- 14,41 ---- * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. * + * @file FsmlParameter.java + * @version $Revision$ + * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> + * @author Last Revised By: $Author$ + * + * @brief Contains documentation and implementation of + * com.saic.ship.fsml.FsmlParameter + * + * @if INCLUDE_CVS_HISTORY + * @ref com.saic.ship.fsml_FsmlParameter.java_cvs + * @endif */ ! /** ! * @if INCLUDE_CVS_HISTORY ! * @page com.saic.ship.fsml_FsmlParameter.java_cvs CVS Revision History * $Log$ + * Revision 1.4 2005/03/03 17:00:00 bergquistj + * Added code template, method documentation, and headers. + * + * * Revision 1.3 2005/03/03 16:11:48 bergquistj ! * Added convention-compliant code templates, comments, and header ! * documentation. * * Revision 1.2 2005/02/28 18:17:11 j *************** *** 26,29 **** --- 44,52 ---- * Updated code templates for 3 classes. * + * Revision 1.1.1.12 2005/02/28 18:17:11 j + * Added GPL to code headers. + * + * Updated code templates for 3 classes. + * * Revision 1.1.1.1 2005/02/19 22:45:17 j * imported FSML source *************** *** 38,73 **** * Initial version * */ ! package com.saic.ship.fsml; ! /** ! * @author Eric Wood ! * @classname ClassName ! * @see Closely associated classes, especially within a package. ! * @since mm-dd-yy ! */ ! //----------------------------------------------------------------------------- // Imports ! //----------------------------------------------------------------------------- import org.apache.log4j.*; public class FsmlParameter { ! //----------------------------------------------------------------------------- // Static Members ! //----------------------------------------------------------------------------- /** * Logger for this class */ private static Logger logger = Logger.getLogger(FsmlParameter.class); ! //----------------------------------------------------------------------------- // Static Methods ! //----------------------------------------------------------------------------- ! //----------------------------------------------------------------------------- // Instance Members ! //----------------------------------------------------------------------------- private String name; private int datatype; --- 61,122 ---- * Initial version * + * @endif + * */ ! //---------------------------------------------------------------------------- ! // Package ! //---------------------------------------------------------------------------- ! package com.saic.ship.fsml; ! //---------------------------------------------------------------------------- // Imports ! //---------------------------------------------------------------------------- ! import org.apache.log4j.*; + /** + * Brief class description + * + * <p> More detailled class description + * + * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> + * @author Last Revised By: $Author$ + * @see Related classes + * @since Created On: 2005/03/01 + * @since Last Revised on: $Date$ + * @version $Revision$ + * + */ public class FsmlParameter { ! //---------------------------------------------------------------------------- // Static Members ! //---------------------------------------------------------------------------- ! /** @name Static Members */ ! //@{ ! /** * Logger for this class */ private static Logger logger = Logger.getLogger(FsmlParameter.class); ! ! //@} ! ! //---------------------------------------------------------------------------- // Static Methods ! //---------------------------------------------------------------------------- ! /** @name Static Methods */ ! //@{ ! ! //@} ! //---------------------------------------------------------------------------- // Instance Members ! //---------------------------------------------------------------------------- ! /** @name Instance Members */ ! //@{ ! private String name; private int datatype; *************** *** 75,140 **** private String units; ! //----------------------------------------------------------------------------- // Constructors ! //----------------------------------------------------------------------------- ! //----------------------------------------------------------------------------- // Accessors and Mutators ! //----------------------------------------------------------------------------- public int getDatatype() { return datatype; } public void setDatatype(int datatype) { this.datatype = datatype; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getName() { return name; } public String getUnits() { return units; } public void setName(String name) { this.name = name; } public void setUnits(String units) { this.units = units; } ! //----------------------------------------------------------------------------- // Miscellaneous Public Methods ! //----------------------------------------------------------------------------- public String toString() { return name; } ! //----------------------------------------------------------------------------- // Internal Methods (methods not for general use) ! //----------------------------------------------------------------------------- ! //----------------------------------------------------------------------------- // Interface Implementation ! //----------------------------------------------------------------------------- ! //----------------------------------------------------------------------------- // Event Handling ! //----------------------------------------------------------------------------- ! //----------------------------------------------------------------------------- // Inner Classes ! //----------------------------------------------------------------------------- ! } ! //----------------------------------------------------------------------------- // End of file FsmlParameter.java --- 124,258 ---- private String units; ! //@} ! //---------------------------------------------------------------------------- // Constructors ! //---------------------------------------------------------------------------- ! /** @name Constructors */ ! //@{ ! //@} ! //---------------------------------------------------------------------------- // Accessors and Mutators ! //---------------------------------------------------------------------------- ! /** @name Accessors and Mutators */ ! //@{ ! ! /** ! * Return the datatype for this parameter. ! * ! * @return an <code>int</code> value ! */ public int getDatatype() { return datatype; } + /** + * Set the datatype for this parameter + * + * @param datatype an <code>int</code> value + */ public void setDatatype(int datatype) { this.datatype = datatype; } + /** + * Return this parameter's description. + * + * @return a <code>String</code> value + */ public String getDescription() { return description; } + /** + * Set the description for this parameter. + * + * @param description a <code>String</code> value + */ public void setDescription(String description) { this.description = description; } + /** + * Return the name for this parameter. + * + * @return a <code>String</code> value + */ public String getName() { return name; } + /** + * Get the units for this parameter. + * + * @return a <code>String</code> value + */ public String getUnits() { return units; } + /** + * Set the name for this parameter. + * + * @param name a <code>String</code> value + */ public void setName(String name) { this.name = name; } + /** + * Set the units for this parameter. + * + * @param units a <code>String</code> value + */ public void setUnits(String units) { this.units = units; } ! //@} ! //---------------------------------------------------------------------------- // Miscellaneous Public Methods ! //---------------------------------------------------------------------------- ! /** @name Miscelaneous Public methods */ ! //@{ ! public String toString() { return name; } ! ! //@} ! //---------------------------------------------------------------------------- // Internal Methods (methods not for general use) ! //---------------------------------------------------------------------------- ! /** @name Internal Methods (methods not for general use) */ ! //@{ ! ! //@} ! //---------------------------------------------------------------------------- // Interface Implementation ! //---------------------------------------------------------------------------- ! /** @name Interface Implementation */ ! //@{ ! ! //@} ! //---------------------------------------------------------------------------- // Event Handling ! //---------------------------------------------------------------------------- ! /** @name Event Handling */ ! //@{ ! ! //@} ! //---------------------------------------------------------------------------- // Inner Classes ! //---------------------------------------------------------------------------- ! /** @name Inner Classes */ ! //@{ ! ! //@} ! //---------------------------------------------------------------------------- // End of file FsmlParameter.java + } Index: FsmlFileReader.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileReader.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlFileReader.java 3 Mar 2005 16:11:48 -0000 1.5 --- FsmlFileReader.java 3 Mar 2005 17:00:00 -0000 1.6 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlFileReader.java_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 17:00:00 bergquistj + * Added code template, method documentation, and headers. + * * Revision 1.5 2005/03/03 16:11:48 bergquistj * Added convention-compliant code templates, comments, and header documentation. *************** *** 120,126 **** /** ! * Must set the ignoreMissingValues flag. This is critical to proper reading ! * of the data in the correct format. Values missing from the map will either ! * be ignored or read. * * @param delimiters a <code>String</code> value --- 123,127 ---- /** ! * Specify the delimiters for reading this file. * * @param delimiters a <code>String</code> value *************** *** 129,133 **** /** ! * Describe <code>setIgnoreMissingValues</code> method here. * * @param b a <code>boolean</code> value --- 130,136 ---- /** ! * Must set the ignoreMissingValues flag. This is critical to proper reading ! * of the data in the correct format. Values missing from the map will either ! * be ignored or read. * * @param b a <code>boolean</code> value Index: FsmlFileDataListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileDataListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FsmlFileDataListener.java 28 Feb 2005 18:17:11 -0000 1.3 --- FsmlFileDataListener.java 3 Mar 2005 16:59:59 -0000 1.4 *************** *** 14,19 **** * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. * ! //------------------------------------------------------------------------------ * $Log$ * Revision 1.3 2005/02/28 18:17:11 j * Added GPL to code headers. --- 14,37 ---- * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. * ! * @file FsmlFileDataListener.java ! * @version $Revision$ ! * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> ! * @author Last Revised By: $Author$ ! * ! * @brief Contains documentation and implementation of ! * com.saic.ship.fsml.FsmlFileDataListener ! * ! * @if INCLUDE_CVS_HISTORY ! * @ref com.saic.ship.fsml_FsmlFileDataListener.java_cvs ! * @endif ! */ ! ! /** ! * @if INCLUDE_CVS_HISTORY ! * @page com.saic.ship.fsml_FsmlFileDataListener.java_cvs CVS Revision History * $Log$ + * Revision 1.4 2005/03/03 16:59:59 bergquistj + * Added code template, method documentation, and headers. + * * Revision 1.3 2005/02/28 18:17:11 j * Added GPL to code headers. *************** *** 34,44 **** * */ package com.saic.ship.fsml; public interface FsmlFileDataListener { ! public void beginFileData(int numElements); ! public void dataElementDeclared(String name, int type, String description, String units); ! public void endFileData(); } --- 52,112 ---- * */ + //---------------------------------------------------------------------------- + // Package + //---------------------------------------------------------------------------- + package com.saic.ship.fsml; + /** + * + * FsmlFileDataListener is one of the core Fsml interfaces (along + * with FsmlProcessor). This interface defines the methods which classes + * must implement in order to process the FileData portion of fsml files + * and read/write parametric data into a file on the system. The parsing + * methods for the FileStructure section are in FsmlFileStructureListener. + * + * <p> This interface deals with the data constructs (types, array sizes, + * etc) for parametes which will be accessed using FSML. The FileData + * section of an FSML file is where these specifications are made. + * + * + * @author Created By: <a href=mailto:j...@sh...>J Bergquist</a> + * @author Last Revised By: $Author$ + * @see Related classes + * @since Created On: 2005/03/01 + * @since Last Revised on: $Date$ + * @version $Revision$ + * + */ public interface FsmlFileDataListener { ! ! /** ! * Begin reading file data. Implementing classes must provide some means for ! * reading the file data section of an FSML file. ! * ! * @param numElements an <code>int</code> value ! */ ! public void beginFileData(int numElements); ! ! /** ! * Process a data element declaration. Recognize type, description, and ! * units. ! * ! * @param name a <code>String</code> value ! * @param type an <code>int</code> value ! * @param description a <code>String</code> value ! * @param units a <code>String</code> value ! */ ! public void dataElementDeclared(String name, int type, String description, String units); ! ! /** ! * End processing of the file data section of an FSML file. Implementing ! * classes must finish up and close the file. ! * ! */ ! public void endFileData(); ! //---------------------------------------------------------------------------- ! // End of file FsmlFileDataListener.java } Index: FsmlFileStructureListener.java =================================================================== RCS file: /cvsroot/fsml/FSML/src/com/saic/ship/fsml/FsmlFileStructureListener.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FsmlFileStructureListener.java 1 Mar 2005 15:08:49 -0000 1.5 --- FsmlFileStructureListener.java 3 Mar 2005 17:00:00 -0000 1.6 *************** *** 31,34 **** --- 31,37 ---- * @page com.saic.ship.fsml_FsmlFileStructureListener_cvs CVS Revision History * $Log$ + * Revision 1.6 2005/03/03 17:00:00 bergquistj + * Added code template, method documentation, and headers. + * * Revision 1.5 2005/03/01 15:08:49 j * Updated code templates. *************** *** 64,68 **** /** ! * <p> FsmlFileStructureListener is one of the core Fsml interfaces (along * with FsmlProcessor). This interface defines the methods which classes * must implement in order to process the FileStructure portion of fsml files --- 67,71 ---- /** ! * FsmlFileStructureListener is one of the core Fsml interfaces (along * with FsmlProcessor). This interface defines the methods which classes * must implement in order to process the FileStructure portion of fsml files |
From: J B. <ber...@us...> - 2005-03-03 16:14:57
|
Update of /cvsroot/fsml/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26276 Modified Files: modules Log Message: Added an FSML module. Index: modules =================================================================== RCS file: /cvsroot/fsml/CVSROOT/modules,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** modules 2 Mar 2005 22:24:24 -0000 1.2 --- modules 3 Mar 2005 16:14:18 -0000 1.3 *************** *** 26,29 **** # spread out over the entire source repository. ! fsml fsml --- 26,29 ---- # spread out over the entire source repository. ! fsml FSML |