1   package com.stateofflow.eclipse.metrics.type;
2   
3   public final class NullType extends Type {
4       public String getName() {
5           return "";
6       }
7   
8       public String getNameWithChildNameAppended(final NonNullType child) {
9           return child.getNamePart();
10      }
11  }
12