1 19 20 package org.netbeans.lib.cvsclient.command.editors; 21 22 import java.io.*; 23 import java.util.*; 24 25 import org.netbeans.lib.cvsclient.command.*; 26 27 31 public class EditorsFileInfoContainer extends FileInfoContainer { 32 33 private final String client; 34 private final Date date; 35 private final File file; 36 private final String user; 37 38 EditorsFileInfoContainer(File file, String user, Date date, String client) { 39 this.file = file; 40 this.user = user; 41 this.date = date; 42 this.client = client; 43 } 44 45 public File getFile() { 46 return file; 47 } 48 49 public String getClient() { 50 return client; 51 } 52 53 public Date getDate() { 54 return date; 55 } 56 57 public String getUser() { 58 return user; 59 } 60 } 61 | Popular Tags |