001 package org.mesopotamia.lang.java; 002 003 public class SingleLineComment extends Comment { 004 005 public SingleLineComment(int line, int col, String text) { 006 super(line, col, text); 007 } 008 009 }