Revision: 20044
http://sourceforge.net/p/gate/code/20044
Author: markagreenwood
Date: 2017-02-01 07:10:51 +0000 (Wed, 01 Feb 2017)
Log Message:
-----------
last set (I think) of javadoc fixes
Modified Paths:
--------------
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/Automaton.java
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfLabels.java
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfStrings.java
Modified:
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/Automaton.java
===================================================================
---
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/Automaton.java
2017-02-01 07:03:01 UTC (rev 20043)
+++
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/Automaton.java
2017-02-01 07:10:51 UTC (rev 20044)
@@ -280,7 +280,7 @@
*
* @param finalities
* finalities[f] is a State that has a finality f.
- * @return
+ * @return the final Automaton
*/
public Automaton determinize(StatePDA[] finalities) {
AutomatonBuildHelp bHelp = new
AutomatonBuildHelp(alphabetLength);
@@ -763,7 +763,7 @@
/**
* Gets the number of transitions in the automaton
*
- * @return
+ * @return the number of transitions in the automaton
*/
public int getTransitionsStored() {
return transitionsStored;
@@ -771,9 +771,7 @@
/**
* Converts the automaton into State[].
- *
- * @param tripleTransitions
- * @return
+ * @return the automaton converted into a State[]
*/
public StatePDA[] toFSM(TripleTransitions tripleTransitions) {
StatePDA[] fsmStates = new StatePDA[statesStored];
Modified:
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfLabels.java
===================================================================
---
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfLabels.java
2017-02-01 07:03:01 UTC (rev 20043)
+++
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfLabels.java
2017-02-01 07:10:51 UTC (rev 20044)
@@ -29,7 +29,7 @@
/**
* Puts a transition in the closed hash.
*
- * @param t
+ * @param t the transition to store
* @return the number of the transition
*/
public int put(TransitionPDA t) {
@@ -40,7 +40,7 @@
* Gets an array of all transitions that are stored in the closed hash.
A
* change of one these transition will make the hash table inconsistent.
*
- * @return
+ * @return an array of all transitions currently in the closed hash
*/
public TransitionPDA[] getCopyOfTransitions() {
TransitionPDA[] t = new TransitionPDA[objectsStored];
@@ -54,7 +54,7 @@
/**
* Gets the number of transitions that are stored in the closed hash.
*
- * @return
+ * @return the number of transitions stored in the closed hash
*/
public int getTransitionsStored() {
if (epsilon) {
Modified:
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfStrings.java
===================================================================
---
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfStrings.java
2017-02-01 07:03:01 UTC (rev 20043)
+++
gate/branches/sawdust2/plugins/JAPE_Plus/src/main/java/com/ontotext/jape/automaton/ClosedHashOfStrings.java
2017-02-01 07:10:51 UTC (rev 20044)
@@ -24,7 +24,7 @@
/**
* Puts a string in the closed hash.
*
- * @param s
+ * @param s the string to store
* @return the number of the string
*/
public int put(String s) {
@@ -34,7 +34,7 @@
/**
* Gets an array of all strings that are stored in the closed hash.
*
- * @return
+ * @return an array of all strings that are stored in the closed hash
*/
public String[] getCopyOfStrings() {
String[] s = new String[objectsStored];
@@ -48,7 +48,7 @@
/**
* Gets the number of strings that are stored in the closed hash.
*
- * @return
+ * @return the number of strings stored in the closed hash
*/
public int getStringsStored() {
return (objectsStored);
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs