Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package com.stevesoft.pat

File PatternSub.java

 

Code metrics

0
0
0
1
16
5
0
-
-
0
-

Classes

Class Line # Actions
PatternSub 13 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    //
2    // This software is now distributed according to
3    // the Lesser Gnu Public License. Please see
4    // http://www.gnu.org/copyleft/lesser.txt for
5    // the details.
6    // -- Happy Computing!
7    //
8    package com.stevesoft.pat;
9   
10    /**
11    * This is simply a subclass of pattern that contains a sub pattern.
12    */
 
13    abstract class PatternSub extends Pattern
14    {
15    Pattern sub;
16    }