Revision 4675
Added by daigle about 16 years ago
src/edu/ucsb/nceas/metacat/AccessSection.java | ||
---|---|---|
46 | 46 |
private Stack<NodeRecord> storedTmpNodeStack = null; |
47 | 47 |
private Vector<String> describedIdList = new Vector<String>(); |
48 | 48 |
private long startedDescribesNodeId = -1; |
49 |
private String inlineDataFileName = null;
|
|
49 |
private String dataFileName = null;
|
|
50 | 50 |
private Logger logMetacat = Logger.getLogger(AccessSection.class); |
51 | 51 |
|
52 | 52 |
|
... | ... | |
146 | 146 |
return startedDescribesNodeId; |
147 | 147 |
} |
148 | 148 |
|
149 |
/** Set the inlineDataFileName */
|
|
150 |
public void setInlineDataFileName(String fileName)
|
|
149 |
/** Set the dataFileName */
|
|
150 |
public void setDataFileName(String fileName) |
|
151 | 151 |
{ |
152 |
inlineDataFileName = fileName;
|
|
152 |
dataFileName = fileName;
|
|
153 | 153 |
} |
154 | 154 |
|
155 |
/** Get the inlineDataFileName */
|
|
156 |
public String getInlineDataFileName()
|
|
155 |
/** Get the dataFileName */
|
|
156 |
public String getDataFileName() |
|
157 | 157 |
{ |
158 |
return inlineDataFileName;
|
|
158 |
return dataFileName;
|
|
159 | 159 |
} |
160 | 160 |
|
161 | 161 |
/** Method to copy a accesssection object to a new one */ |
Also available in: Unified diff
Change Inlinedatafilename to datafilename, since it can be the name of a regular data file