
org.semanticwb.office.interfaces.SemanticFileRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SWBOfficeComunicationInterfaces Show documentation
Show all versions of SWBOfficeComunicationInterfaces Show documentation
MS Office plugin communication components for SemanticWebBuilder
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.semanticwb.office.interfaces;
import java.util.Date;
/**
*
* @author victor.lorenzana
*/
public class SemanticFileRepository {
public String title;
public String name;
public String uuid;
public Date date;
public String url;
@Override
public String toString()
{
return title.toString();
}
@Override
public boolean equals(Object obj)
{
if (obj == null)
{
return false;
}
if (getClass() != obj.getClass())
{
return false;
}
final SemanticFileRepository other = (SemanticFileRepository) obj;
if ((this.uuid == null) ? (other.uuid != null) : !this.uuid.equals(other.uuid))
{
return false;
}
return true;
}
@Override
public int hashCode()
{
int hash = 7;
hash = 19 * hash + (this.uuid != null ? this.uuid.hashCode() : 0);
return hash;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy