blob: bd749971c664e7c034ec826d6050d387357e0e92 [file] [log] [blame]
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.lib.cvsclient.command;
import org.netbeans.lib.cvsclient.file.FileObject;
import org.netbeans.lib.cvsclient.util.BugLog;
import java.io.File;
/**
* @author Thomas Singer
*/
public final class DefaultFileInfo
implements IFileInfo {
// Fields =================================================================
private final FileObject fileObject;
private final File file;
// Setup ==================================================================
public DefaultFileInfo(FileObject fileObject, File file) {
BugLog.getInstance().assertNotNull(fileObject);
BugLog.getInstance().assertNotNull(file);
this.fileObject = fileObject;
this.file = file;
}
// Implemented ============================================================
public FileObject getFileObject() {
return fileObject;
}
@SuppressWarnings({"HardCodedStringLiteral"})
public String toString() {
final StringBuffer buffer = new StringBuffer();
if (isDirectory()) {
buffer.append("Directory ");
}
buffer.append(file != null ? file.getAbsolutePath() : "null");
return buffer.toString();
}
// Accessing ==============================================================
public File getFile() {
return file;
}
// Utils ==================================================================
private boolean isDirectory() {
final File file = getFile();
if (file == null) {
return false;
}
return file.isDirectory();
}
}