home *** CD-ROM | disk | FTP | other *** search
- package com.commerceone.util.io;
-
- import java.io.File;
- import java.util.Date;
-
- public class FileWrapper extends File {
- private final Date m_Created;
-
- public FileWrapper(String filename, Date timeCreated) {
- super(filename);
- this.m_Created = timeCreated;
- }
-
- public FileWrapper(String path, String filename, Date timeCreated) {
- super(path, filename);
- this.m_Created = timeCreated;
- }
-
- public Date getTimeCreated() {
- return this.m_Created;
- }
- }
-