1 package com.loribel.commons.abstraction;
2
3 import java.util.*;
4
5 /***
6 * Abstraction of a Object with last modified date.
7 */
8 public interface GB_LastModifiedOwnerSet
9 extends
10 GB_LastModifiedOwner
11 {
12 void setLastModified(
13 Date a_date);
14 }