RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html .phtml
nameM.setCellValueFactory(new PropertyValueFactory("name"));
public class MusicStruct {
private Long id;
private String adres;
private String name;
private int idList;
MusicStruct(String name, String adres) {
this.name = name;
this.adres = adres;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getadres() {
return adres;
}
public void setadres(String adres) {
this.adres = adres;
}
public String getname() {
return name;
}
public void setname(String id) {
this.name= name;
}
public int getidList() {
return idList;
}
public void setidList(int id) {
this.idList = idList;
}
}
private int myhash1(String x )
{
int hashVal = x.hashCode( );
hashVal %= TABLE_SIZE;
if (hashVal < 0)
hashVal += TABLE_SIZE;
return hashVal;
}