/******************************************************************************* * Copyright (c) 2009, 2017 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org.eclipse.dltk.core.index.sql; import java.io.Serializable; /** * This POJO represents file where element is referenced (or declared). * * @author michael * */ public class File implements Serializable { private static final long serialVersionUID = 1L; private int id; private String path; private long timestamp; private int containerId; public File(int id, String path, long timestamp, int containerId) { this.id = id; this.path = path; this.timestamp = timestamp; this.containerId = containerId; } /** * Returns file path * * @return */ public String getPath() { return path; } /** * Returns primary key associated with this entry * * @return */ public int getId() { return id; } /** * Returns last update time of this file * * @return */ public long getTimestamp() { return timestamp; } public int getContainerId() { return containerId; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + id; return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; File other = (File) obj; if (id != other.id) return false; return true; } @Override public String toString() { return "File [containerId=" + containerId + ", path=" + path + "]"; } }