it.cnr.contab.docamm00.docs.bulk.AssociazioniInventarioTable Maven / Gradle / Ivy
/*
* Copyright (C) 2019 Consiglio Nazionale delle Ricerche
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package it.cnr.contab.docamm00.docs.bulk;
import it.cnr.contab.inventario00.docs.bulk.Ass_inv_bene_fatturaBulk;
/**
* Insert the type's description here.
* Creation date: (11/16/2001 5:02:49 PM)
* @author: Roberto Peli
*/
public class AssociazioniInventarioTable extends it.cnr.jada.bulk.PrimaryKeyHashtable {
/**
* AccertamentiTable constructor comment.
*/
public AssociazioniInventarioTable() {
super();
}
/**
* AccertamentiTable constructor comment.
* @param initialCapacity int
*/
public AssociazioniInventarioTable(int initialCapacity) {
super(initialCapacity);
}
/**
* AccertamentiTable constructor comment.
* @param initialCapacity int
* @param loadFactor float
*/
public AssociazioniInventarioTable(int initialCapacity, float loadFactor) {
super(initialCapacity, loadFactor);
}
/**
* AccertamentiTable constructor comment.
* @param t java.util.Map
*/
public AssociazioniInventarioTable(java.util.Map t) {
super(t);
}
public synchronized Object get(Object key) {
if (key == null)
return null;
Object foundValue = super.get(key);
if (foundValue == null) {
Ass_inv_bene_fatturaBulk test = (Ass_inv_bene_fatturaBulk)key;
for (java.util.Enumeration e = keys(); e.hasMoreElements();) {
Ass_inv_bene_fatturaBulk ass = (Ass_inv_bene_fatturaBulk)e.nextElement();
if (test.equalsByPrimaryKey(ass)) {
foundValue = super.get(ass);
break;
}
}
}
return foundValue;
}
public synchronized Ass_inv_bene_fatturaBulk getKey(Ass_inv_bene_fatturaBulk key) {
Ass_inv_bene_fatturaBulk ass = null;
if (key != null)
for (java.util.Enumeration e = keys(); e.hasMoreElements();) {
Ass_inv_bene_fatturaBulk aKey = (Ass_inv_bene_fatturaBulk)e.nextElement();
if (aKey.equalsByPrimaryKey(key)) {
ass = aKey;
break;
}
}
return ass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy