blob: 97550ca0a22d43a36fb55c0889604bc2c4e065e2 [file] [log] [blame]
package com.siyeh.igtest.j2me.abstract_class_with_only_one_direct_inheritor;
public abstract class AbstractClassWithOnlyOneDirectInheritor {}
class Inheritor extends AbstractClassWithOnlyOneDirectInheritor {}
abstract class AbstractClassWithoutInheritor {}
abstract class AbstractClassWithTwoInheritors {}
class Inheritor1 extends AbstractClassWithTwoInheritors {}
class Inheritor2 extends AbstractClassWithTwoInheritors {}