Revision 4501
Added by daigle about 16 years ago
src/edu/ucsb/nceas/metacat/Eml200SAXHandler.java | ||
---|---|---|
131 | 131 |
private Hashtable onlineURLDistributionIdList = new Hashtable(); |
132 | 132 |
// distribution/oneline/url will store this vector if distribution doesn't |
133 | 133 |
// have a id. |
134 |
private Vector onelineURLDistributionListWithoutId = new Vector();
|
|
134 |
private Vector onlineURLDistributionListWithoutId = new Vector(); |
|
135 | 135 |
|
136 | 136 |
//store all distribution element id for online other distribution, such as |
137 | 137 |
// connection or connectiondefination. key is the distribution id |
... | ... | |
1267 | 1267 |
} |
1268 | 1268 |
else |
1269 | 1269 |
{ |
1270 |
onelineURLDistributionListWithoutId.add(data);
|
|
1270 |
onlineURLDistributionListWithoutId.add(data); |
|
1271 | 1271 |
} |
1272 | 1272 |
}//if |
1273 | 1273 |
}//else if |
... | ... | |
2067 | 2067 |
}//while |
2068 | 2068 |
|
2069 | 2069 |
// here is the onlineURL without id |
2070 |
for (int i= 0; i < onelineURLDistributionListWithoutId.size(); i++)
|
|
2070 |
for (int i= 0; i < onlineURLDistributionListWithoutId.size(); i++) |
|
2071 | 2071 |
{ |
2072 |
String url = (String)onelineURLDistributionListWithoutId.elementAt(i);
|
|
2072 |
String url = (String)onlineURLDistributionListWithoutId.elementAt(i); |
|
2073 | 2073 |
String onlineDataId = handleOnlineUrlDataFile(url); |
2074 | 2074 |
if (onlineDataId != null) |
2075 | 2075 |
{ |
Also available in: Unified diff
fixed spelling of onlineURLDistributionListWithoutId variable