001 /*
002 @license.text@
003 */
004 package com.hammurapi.reasoning.tutorial.objectmodel;
005
006
007 public class GrandMother extends GrandParent {
008
009 public GrandMother(Person subject, Person object) {
010 super(subject, object);
011 }
012
013 }