Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/rxm.git

Updated comments.

Author Dave Jarvis <email>
Date 2015-03-07 20:07:40 GMT-0800
Commit c029a380761dcec8e22094b26a2abdcf3114b953
Parent dd442c7
Delta 8 lines added, 2 lines removed, 6-line increase
source/java/com/whitemagicsoftware/rxm/tree/xml/AttributeMapContext.java
import com.whitemagicsoftware.rxm.grammar.QueryParser;
+/**
+ * Transforms <code>table &gt; @attribute</code>.
+ */
public class AttributeMapContext extends ASTParserRuleContext {
public AttributeMapContext( ParserRuleContext ctx ) {
source/java/com/whitemagicsoftware/rxm/tree/xml/ColumnMapContext.java
import com.whitemagicsoftware.rxm.grammar.QueryParser;
+/**
+ * Transforms <code>column &gt; path</code>.
+ */
public class ColumnMapContext extends ASTParserRuleContext {
public ColumnMapContext( ParserRuleContext ctx ) {
source/java/com/whitemagicsoftware/rxm/tree/xml/TableMapContext.java
/**
- * Transforms <code>element &gt; element</code>.
+ * Transforms <code>table &gt; path</code>.
*/
public class TableMapContext extends ASTParserRuleContext {
source/java/com/whitemagicsoftware/rxm/tree/xml/Token.java
/**
- * Avoids having to dupliate common token functionality across the different
+ * Avoids having to duplicate common token functionality across the different
* parser rule contexts.
*/