/* * [Noise.java] * * Summary: abstract base to describe noise, e.g. comments, whitespace, space, NL, Start, Stop. * * Copyright: (c) 2009-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 2.0 2009-04-19 tidy comments, more accurate colour names */ package com.mindprod.jtokens; /** * abstract base to describe noise, e.g. comments, whitespace, space, NL, Start, Stop. * * @author Roedy Green, Canadian Mind Products * @version 2.0 2009-04-19 tidy comments, more accurate colour names * @since 2009-04-12 */ public abstract class Noise extends Token { /** * version number for the class */ static final long serialVersionUID = 1L; /** * Constructor, usually null * * @param text the comment or whitespace. */ Noise( String text ) { super( text ); } }